diff --git a/apps/econ/src/catalog-load.ts b/apps/econ/src/catalog-load.ts index ea7fc73..3585bb2 100644 --- a/apps/econ/src/catalog-load.ts +++ b/apps/econ/src/catalog-load.ts @@ -259,3 +259,30 @@ export const SUBSCRIBER_DISCOUNT_PERCENT = 10 /** The subscriber price for a regular one. Floored, matching the server's `subscriberFloor`. */ export const subscriberPriceFor = (regular: number): number => Math.floor((regular * (100 - SUBSCRIBER_DISCOUNT_PERCENT)) / 100) + +/** + * The last client build treated as the 2023-era one, as a build number and as the ISO date the + * item catalogue records `CreatedAt` in. + * + * One constant in two forms because two things key off the same moment: the econ worker decides + * which storefront FILE a caller is served by comparing their token's `rn.ver` to the number, + * and the storefront generator decides which ITEMS go in the 2023 file by comparing each item's + * `CreatedAt` to the date. They must not drift — a build served the old store but a store built + * to a different date would sell items that build has never heard of. + */ +export const LEGACY_CLIENT_BUILD = 20_230_414 + +/** {@link LEGACY_CLIENT_BUILD} as `YYYY-MM-DD`, for comparing against a `CreatedAt`. */ +export const LEGACY_CLIENT_BUILD_DATE = '2023-04-14' + +/** + * Whether an item existed by the time of {@link LEGACY_CLIENT_BUILD} — i.e. whether the 2023 + * store should sell it. + * + * An item with NO `CreatedAt` is treated as too new and left out: three catalogue rows carry + * none, and there is no way to show they predate the cutoff. Excluding is the conservative + * direction — the 2023 store missing three items nobody noticed is better than it offering + * something that build cannot render. + */ +export const existedByLegacyBuild = (createdAt: string | null | undefined): boolean => + typeof createdAt === 'string' && createdAt.slice(0, 10) < LEGACY_CLIENT_BUILD_DATE diff --git a/apps/econ/src/econ.app.ts b/apps/econ/src/econ.app.ts index e6d595b..0149d36 100644 --- a/apps/econ/src/econ.app.ts +++ b/apps/econ/src/econ.app.ts @@ -51,10 +51,14 @@ import { isSpendable, spendCurrency, } from './balance-db' +// `LEGACY_CLIENT_BUILD` is shared with the storefront generator rather than restated: it picks +// which store FILE a caller is served here, and which ITEMS go in that file there. The two must +// name the same moment or a build gets a store built to a different cutoff. import { CATALOG_ID_BASE, CatalogKind, isSellableRarity, + LEGACY_CLIENT_BUILD, priceForRarity, subscriberPriceFor, } from './catalog-load' @@ -187,15 +191,6 @@ async function authedBuild(c: Context): Promise { return Number.isInteger(build) ? build : null } -/** - * The last client build treated as the 2023-era one. `GAME_VERSION` — what the rest of the - * stack targets and reports for itself — so it and anything older keep exactly what they had, - * and only a LATER build gets anything served differently. - * - * Compared with {@link authedBuild}, which reads the build off the token's `rn.ver`. - */ -const LEGACY_CLIENT_BUILD = 20230414 - /** Results.Unauthorized() equivalent — 401 with empty body. */ function unauthorized(c: Context) { return c.body(null, 401) @@ -654,11 +649,11 @@ const STOREFRONT_ALIASES: Record = { * Storefronts that have a SECOND file for newer clients, keyed by the id the client asks for * and naming the file a build past {@link LEGACY_CLIENT_BUILD} is served instead. * - * `3` is the general store. The 2023 client keeps `sf3.json` exactly as captured; a later one - * gets `sf3-2025.json`, which is that same file plus every sellable row of the item catalog - * (see `runx storefront build`). One storefront id either way — the client asks for 3 in both - * cases and neither knows there are two files — so nothing about the request changes and no - * item is renumbered. The two id spaces do not collide, which is what makes the merge safe. + * `3` is the general store, and BOTH files are generated from the item catalog by + * `runx storefront build` — the same store at two points in time. `sf3.json` holds what existed + * by {@link LEGACY_CLIENT_BUILD}; `sf3-2025.json` holds everything. One storefront id either + * way: the client asks for 3 in both cases and neither knows there are two files, so nothing + * about the request changes and no item is renumbered between them. * * Resolved in {@link storefrontAssetPath}, which BOTH the listing route and * {@link loadStorefront} go through, so browsing and buying always read the same file. That is @@ -1018,23 +1013,87 @@ async function pushProgressionUpdate( */ const ROLL_STOREFRONT_TYPE = 3 -/** Every item in the roll catalog, or `[]` if it can't be read (a roll then yields nothing). */ +/** + * Every item a roll or a weekly gift may draw, or `[]` if it can't be read (a roll then yields + * nothing). + * + * The storefront PLUS every equipment skin, which no storefront sells: skins are awarded from + * weekly challenges rather than bought, so they were taken out of sf3 — and the weekly gift pool + * is exactly the equipment in this list, which would otherwise be empty. They come from the + * `catalog` table, whose skins are the same rows `static/db/skins.json` holds. + * + * Being in this list does NOT make an item purchasable. `findStoreItem` and the bulk bag resolve + * a purchase against the storefront file, never against this. + */ async function loadRollCatalog(c: Context): Promise { const storefront = await loadStorefront(c, ROLL_STOREFRONT_TYPE) - return storefront?.StoreItems ?? [] + const { results } = await c.env.DB.prepare( + `SELECT * FROM catalog WHERE kind = ?1 AND catalog_id IS NOT NULL` + ) + .bind(CatalogKind.Skin) + .all() + return [...(storefront?.StoreItems ?? []), ...results.map(toSkinStoreItem)] } /** - * The equipment a weekly challenge gift can be drawn from: every roll-catalog item carrying - * an `EquipmentModificationGuid`. Weekly rewards are equipment — the captured rotation's is a - * camera skin — and in sf3 that guid is exactly what marks an item as equipment (187 of its - * 1161, all with a prefab, none with an avatar item or consumable attached). + * One catalog skin as a STORE ITEM, so the roll catalog and the weekly gift pool can read it the + * same way they read a storefront entry. * - * `GiftDropId` comes off `PurchasableItemId`, which every sf3 equipment entry agrees with. + * Keyed the way a gift-drop keys equipment (`EquipmentPrefabName` + `EquipmentModificationGuid`) + * rather than as an avatar item — that guid is what marks an entry as equipment, and what the + * gift pool filters on. Priced at zero: nothing sells these, and a price here would be a number + * no surface ever shows. + */ +function toSkinStoreItem(row: CatalogRow): StoreItem { + return { + GiftDrop: { + FriendlyName: row.friendly_name, + Tooltip: row.tooltip ?? '', + ConsumableItemDesc: '', + AvatarItemDesc: '', + AvatarItemType: 0, + EquipmentPrefabName: row.prefab_name ?? '', + EquipmentModificationGuid: row.item_key, + Rarity: row.rarity, + Context: 0, + Currency: 0, + CurrencyType: 0, + }, + Prices: [], + PurchasableItemId: row.catalog_id as number, + } +} + +/** + * Equipment prefabs a weekly gift is never drawn from, matched on the prefix of + * `EquipmentPrefabName`. + * + * `[Sandbox_D4]` … `[Sandbox_D20]` are the sandbox dice — 24 skins across six prefabs, a sixth + * of the whole pool. Theming a week on "Sandbox D8 (Pewter)" spends the week's headline reward + * on a die recolour, so they are excluded and the pool is the 248 that remain. + */ +const WEEKLY_GIFT_EXCLUDED_PREFABS = ['[Sandbox_'] + +/** + * The equipment a weekly challenge gift can be drawn from: every roll-catalog item carrying an + * `EquipmentModificationGuid`, less {@link WEEKLY_GIFT_EXCLUDED_PREFABS}. Weekly rewards are + * equipment — the captured rotation's is a camera skin — and that guid is exactly what marks an + * entry as equipment. + * + * The pool comes from the catalog's SKINS now rather than from sf3, which no longer sells + * equipment at all: skins are awarded here, not bought. See {@link loadRollCatalog}. + * + * `GiftDropId` comes off `PurchasableItemId`, which for a skin is its `catalog_id`. */ function toEquipmentGiftPool(catalog: StoreItem[]): EquipmentGift[] { return catalog - .filter((item) => item.GiftDrop.EquipmentModificationGuid !== '') + .filter( + (item) => + item.GiftDrop.EquipmentModificationGuid !== '' && + !WEEKLY_GIFT_EXCLUDED_PREFABS.some((prefix) => + item.GiftDrop.EquipmentPrefabName.startsWith(prefix) + ) + ) .map((item) => ({ GiftDropId: item.PurchasableItemId, EquipmentPrefabName: item.GiftDrop.EquipmentPrefabName, @@ -1496,9 +1555,13 @@ async function catalogStoreItems(db: D1Database, catalogIds: number[]): Promise< .all() return results - .filter((row) => row.catalog_id !== null && isSellableRarity(row.rarity)) + .filter( + (row) => + row.catalog_id !== null && + row.kind === CatalogKind.AvatarItem && + isSellableRarity(row.rarity) + ) .map((row) => { - const skin = row.kind === CatalogKind.Skin const price = priceForRarity(row.rarity) return { GiftDrop: { @@ -1506,12 +1569,12 @@ async function catalogStoreItems(db: D1Database, catalogIds: number[]): Promise< // The client's field is a string; the catalog keeps NULL and "" apart. Tooltip: row.tooltip ?? '', ConsumableItemDesc: '', - // `item_key` IS the desc for an avatar item and the modification guid for a skin — - // one key column, read into whichever field its kind belongs in. - AvatarItemDesc: skin ? '' : row.item_key, - AvatarItemType: skin ? 0 : (row.avatar_item_type ?? 0), - EquipmentPrefabName: skin ? (row.prefab_name ?? '') : '', - EquipmentModificationGuid: skin ? row.item_key : '', + // `item_key` IS the `AvatarItemDesc` for an avatar item — that is what makes it the + // key. The equipment fields stay empty: only avatar items reach here. + AvatarItemDesc: row.item_key, + AvatarItemType: row.avatar_item_type ?? 0, + EquipmentPrefabName: '', + EquipmentModificationGuid: '', Rarity: row.rarity, Context: 0, Currency: 0, @@ -1964,43 +2027,64 @@ const app = new Hono({ strict: false }) .onError(withOnError()) .notFound(withNotFound()) - // A batch lookup of LOCKED avatar items — the client posts the descs it is about to draw - // and expects back the ones it must grey out, as a BARE ARRAY. + // A batch lookup of LOCKED avatar items — the client posts the descs it wants the locked + // state for and expects the matching item records back, as a BARE ARRAY. // - // A TEST STUB: it answers the whole bundled catalogue regardless of what was posted, so - // every item the client can see comes back locked. Two consequences to know before reading - // anything into what the client does with it: + // Filtered by exact `AvatarItemDesc`, matching the reference implementation: it walks its + // own item list and keeps the entries whose desc appears in the posted set. Two consequences + // of copying that shape rather than the obvious one: // - // - The posted `AvatarItemDescriptions` are NOT read, so nothing is echoed. The reference - // answers per requested desc; a client that matches responses to its request will find - // entries it never asked for and none of the ones it did. - // - It is the whole catalogue every call — 3098 items, about a megabyte — which is fine for - // a stub and is not what a real implementation should send. + // - Order is the CATALOGUE's, not the request's, because the filter iterates the catalogue. + // A caller must not read the response positionally against what it asked for. + // - The match is the WHOLE desc, not the base asset. `,,,` and `,,` are + // different items and only the one asked for comes back. // - // The real thing resolves each posted desc against what the player has NOT unlocked. The - // `catalog` table is keyed by `AvatarItemDesc` (`item_key`), so the lookup is already there - // to build on; what is missing is anything recording a lock. + // An EMPTY or absent list means everything, again as the reference does — that is its "give + // me the catalogue" case rather than a degenerate "match nothing". // - // NOTE: the `api` worker has a route of this same path that answers `[]` — it predates this - // one and is left alone deliberately. The client asks THIS host, so that one is unreached; - // they must be reconciled before either is taken for real behaviour. + // Unknown descs are simply absent from the response; a miss is not an error. Nothing records + // a LOCK yet, so what comes back is the item records rather than a genuine locked answer. + // + // POST only, despite the reference declaring it `[HttpGet]` with a `[FromBody]` parameter — + // a combination the fetch standard forbids, so a GET could never carry the descs it needs. + // + // NOTE: the `api` worker has a route of this same path that answers `[]`. The client asks + // THIS host, so that one is unreached; they must be reconciled before either is taken for + // real behaviour. .post( '/api/avatar/v1/lockeditems/bulk', describeRoute({ tags: ['Avatar'], - summary: 'Locked avatar items in bulk (test stub)', + summary: 'Locked avatar items in bulk', description: [ - 'Resolves a batch of `AvatarItemDescriptions` to the items that are LOCKED for the', - 'caller, as a bare array.', - 'TEST STUB: the posted descs are ignored and the whole bundled catalogue comes back,', - 'so the client renders everything as locked. Nothing records a lock yet, and nothing', - 'is echoed — a real implementation answers one entry per posted desc, carrying that', - 'desc verbatim.', + 'Resolves `AvatarItemDescriptions` against the bundled item catalogue and answers the', + 'matching records as a bare array. The match is on the WHOLE `AvatarItemDesc`, so a', + 'colourway is not found by its base asset alone.', + 'An empty or absent list answers the WHOLE catalogue, which is the reference’s own', + 'behaviour rather than a degenerate empty match.', + 'Results come back in CATALOGUE order, not request order — the filter walks the', + 'catalogue — so the response must not be read positionally. Unknown descs are simply', + 'absent; a miss is not an error.', + 'Nothing records a LOCK yet, so what comes back is the item records rather than a', + 'genuine locked/unlocked answer.', ].join(' '), - requestBody: jsonBody(LockedItemsBulkRequest, 'The descs to resolve (currently ignored)'), - responses: { 200: json(JsonArray, 'The locked items — currently the whole catalogue') }, + requestBody: jsonBody(LockedItemsBulkRequest, 'The descs to resolve'), + responses: { 200: json(JsonArray, 'The matching items, in catalogue order') }, }), - (c) => c.json(avatarItemCatalog) + async (c) => { + const body = (await c.req.json().catch(() => null)) as { + AvatarItemDescriptions?: unknown + } | null + const requested = Array.isArray(body?.AvatarItemDescriptions) + ? body.AvatarItemDescriptions.filter((d): d is string => typeof d === 'string') + : [] + if (requested.length === 0) return c.json(avatarItemCatalog) + + // A Set rather than `Array.includes` per item: the client posts hundreds of descs + // against a catalogue of thousands, and the reference's nested scan is quadratic. + const wanted = new Set(requested) + return c.json(avatarItemCatalog.filter((item) => wanted.has(item.AvatarItemDesc))) + } ) // Default-unlocked avatar items, served from the bundled static JSON. diff --git a/apps/econ/src/test/integration/api.test.ts b/apps/econ/src/test/integration/api.test.ts index 10c3633..8159253 100644 --- a/apps/econ/src/test/integration/api.test.ts +++ b/apps/econ/src/test/integration/api.test.ts @@ -29,10 +29,11 @@ import { NotificationType } from '../../../../notify/src/notification-types' import catalogStructureSql from '../../../migrations/0015_catalog.sql?raw' import catalogIdSql from '../../../migrations/0016_catalog_id.sql?raw' import avatarItemsJson from '../../../static/db/avatar-items.json' -import skinsJson from '../../../static/db/skins.json' -import sf32025 from '../../../static/storefronts/sf3-2025.json' // The merged 2025 general store, read as a FILE: which file the route serves depends on the // caller's build, and these assertions are about the file's CONTENTS. +import carriedItems from '../../../static/db/consumables.json' +import skinsJson from '../../../static/db/skins.json' +import sf32025 from '../../../static/storefronts/sf3-2025.json' import sf3 from '../../../static/storefronts/sf3.json' import { SCHEMA_DDL } from '../../avatar-db' import { @@ -74,15 +75,55 @@ import type { CatalogLoadRow, CatalogRow, CatalogValue } from '../../catalog-db' import type { Env } from '../../context' /** - * The half of the merged store that came from the item CATALOG — nothing in the file marks - * which half a row is from, so it is whatever sf3 does not already contain. + * The GENERATED half of a store file — the items built from the item catalog, as opposed to the + * equipment, consumables and boxes carried across from the 2023 capture. * - * NOT `id >= CATALOG_ID_BASE`, which looks equivalent and is not: sf3 carries one id far above - * that range (20756767), so an id test counts it as a catalog row and every count comes out one - * too high. Membership in sf3's own ids is the question actually being asked. + * Split on membership in the CARRIED ids rather than on `CATALOG_ID_BASE`. The two happen to + * agree now that the equipment skins are gone — the carried ids run 2168-2458, well below the + * base — but they did not while a skin carried id 20756767, and asking the real question costs + * nothing. + */ +const capturedIds = new Set(carriedItems.map((i) => i.PurchasableItemId)) +const catalogItems = () => sf32025.StoreItems.filter((i) => !capturedIds.has(i.PurchasableItemId)) + +/** + * An item ONLY the newer store sells — created after the cutoff, so it is in sf3-2025 and not in + * sf3. The build gate is only observable through such an item: everything else is in both files + * and buys identically either way. */ const sf3Ids = new Set(sf3.StoreItems.map((i) => i.PurchasableItemId)) -const catalogItems = () => sf32025.StoreItems.filter((i) => !sf3Ids.has(i.PurchasableItemId)) +const NEWER_ONLY = (() => { + const item = sf32025.StoreItems.find((i) => !sf3Ids.has(i.PurchasableItemId)) + if (item === undefined) throw new Error('sf3-2025 sells nothing sf3 does not') + return { + id: item.PurchasableItemId, + price: item.Prices[0]!.Price, + name: item.GiftDrop.FriendlyName, + } +})() + +/** + * Items the generated `sf3.json` sells, resolved FROM the file rather than hardcoded. + * + * sf3 used to be a capture with its own ids (73 = "Bowtie (White)" at 450); it is now generated + * from the item catalog, so those ids are gone and the prices come from the rarity table. Looking + * them up here means a regenerate — or a repriced tier — cannot leave these tests asserting + * against items the store no longer sells. + * + * `atPrice` picks an AVATAR item at a given tier; the carried equipment/consumables/boxes keep + * their captured ids and are still referenced by number where a test is about one of those. + */ +const sf3AvatarAtPrice = (price: number) => { + const item = sf3.StoreItems.find( + (i) => (i.GiftDrop.AvatarItemDesc ?? '') !== '' && i.Prices[0]?.Price === price + ) + if (item === undefined) throw new Error(`sf3 sells no avatar item at ${price}`) + return { id: item.PurchasableItemId, price, name: item.GiftDrop.FriendlyName } +} +/** A mid-priced item — the general "buy something" fixture. */ +const SF3_ITEM = sf3AvatarAtPrice(600) +/** The cheapest tier, for the line-level price-mismatch assertions. */ +const SF3_CHEAP = sf3AvatarAtPrice(150) declare module 'cloudflare:test' { interface ProvidedEnv extends Env {} @@ -116,6 +157,27 @@ beforeAll(async () => { for (const stmt of INVENTION_SCHEMA_DDL) await env.DB.prepare(stmt).run() for (const stmt of CUSTOM_AVATAR_ITEM_SCHEMA_DDL) await env.DB.prepare(stmt).run() for (const stmt of CATALOG_SCHEMA_DDL) await env.DB.prepare(stmt).run() + // A few equipment skins, which is where the WEEKLY CHALLENGE gift pool comes from now that + // skins are awarded rather than sold and no storefront lists one. Without these the pool is + // empty and the week has nothing to be themed on. + // Skipping the two the `catalog` block seeds by hand further down — `item_key` is the primary + // key, so a second insert of either would fail rather than merge. + const catalogBlockSeeds = new Set([ + '19ef59c7-f74b-4c63-935a-1d4b1abd8518', + 'bfrFOdnHzEaIwHqem2dXkg', + ]) + for (const [i, skin] of skinsJson + .filter((sk) => !catalogBlockSeeds.has(sk.ModificationGuid)) + .slice(0, 8) + .entries()) { + await env.DB.prepare( + `INSERT OR IGNORE INTO catalog + (item_key, catalog_id, kind, friendly_name, tooltip, rarity, platform_mask, prefab_name) + VALUES (?1, ?2, 'skin', ?3, '', ?4, -1, ?5)` + ) + .bind(skin.ModificationGuid, 70_001 + i, skin.FriendlyName, skin.Rarity, skin.PrefabName) + .run() + } await env.DB.prepare('INSERT OR IGNORE INTO account (data) VALUES (?1)') .bind(JSON.stringify({ accountId: 42, username: 'Tester', displayName: 'Tester' })) .run() @@ -799,8 +861,8 @@ describe('econ endpoints', () => { body: JSON.stringify({ PurchaseItemRequests: [ { - ItemPurchaseMethodId: { Type: 0, NumberId: 10222, Guid: null }, - RequestedPrice: 3000, + ItemPurchaseMethodId: { Type: 0, NumberId: NEWER_ONLY.id, Guid: null }, + RequestedPrice: NEWER_ONLY.price, Gift: null, CouponConsumablePlayerMappingId: null, DuplicateItemCount: 1, @@ -824,13 +886,14 @@ describe('econ endpoints', () => { expect(body.Error).not.toBe('Item not found') expect(body.Success).toBe(true) - // 10222 is "Maker Pen Shirt", rarity 50, which the shared pricing puts at 3000 — the same - // number the client posted, because the file it browsed was generated from that pricing. - const item = sf32025.StoreItems.find((i) => i.PurchasableItemId === 10222) - expect(item?.Prices[0]?.Price).toBe(3000) + // The price the client posts is the one the file lists, because the file it browsed and the + // purchase it made are priced from the same shared rarity table. A second pricing anywhere + // would 409 every purchase as "Price has changed". + const item = sf32025.StoreItems.find((i) => i.PurchasableItemId === NEWER_ONLY.id) + expect(item?.Prices[0]?.Price).toBe(NEWER_ONLY.price) - // The SAME request from an old build still fails: its storefront 3 is the captured sf3, - // which does not list the item, and nothing offers it that id anyway. + // The SAME request from an old build still fails: its storefront 3 is generated to the + // cutoff, and this item postdates it. const legacy = await exports.default.fetch(`${ORIGIN}/api/items/bulkpurchase`, { method: 'POST', headers: { @@ -840,8 +903,8 @@ describe('econ endpoints', () => { body: JSON.stringify({ PurchaseItemRequests: [ { - ItemPurchaseMethodId: { Type: 0, NumberId: 10222, Guid: null }, - RequestedPrice: 3000, + ItemPurchaseMethodId: { Type: 0, NumberId: NEWER_ONLY.id, Guid: null }, + RequestedPrice: NEWER_ONLY.price, DuplicateItemCount: 1, }, ], @@ -854,8 +917,8 @@ describe('econ endpoints', () => { }) test('bulkpurchase resolves catalog ids for newer builds, at the storefront’s price', async () => { - // A catalog row the generated storefront would list at 600 (rarity 10) and a skin the - // storefront lists nowhere at all — both bought straight off the `catalog` table. + // A catalog row the generated storefront would list at 600 (rarity 10), bought straight off + // the `catalog` table; plus a skin and a developer-tier row, neither of which may be. const AVATAR_ID = 20_001 const SKIN_ID = 20_002 const DEV_ID = 20_003 @@ -903,17 +966,20 @@ describe('econ endpoints', () => { }), }) - // 150 (rarity 0) and 600 (rarity 10) are the generated storefront's own prices. They MUST - // match: `priceCheck` refuses a line whose posted price differs, so a server pricing a buy - // differently from the file it listed would 409 every purchase. - const res = await buy('20250718.01', [ - { id: AVATAR_ID, price: 600 }, - { id: SKIN_ID, price: 150 }, - ]) + // 600 (rarity 10) is the generated storefront's own price. It MUST match: `priceCheck` + // refuses a line whose posted price differs, so a server pricing a buy differently from the + // file it listed would 409 every purchase. + const res = await buy('20250718.01', [{ id: AVATAR_ID, price: 600 }]) expect(res.status).toBe(200) const body = (await res.json()) as { Success: boolean; Value: { Balance: number } | null } expect(body.Success).toBe(true) + // A SKIN is refused even though the catalog holds it: skins are awarded from weekly + // challenges rather than sold, so no storefront lists one and the bag will not resolve one + // off the table either. + const skin = await buy('20250718.01', [{ id: SKIN_ID, price: 150 }]) + expect(((await skin.json()) as { Success: boolean }).Success).toBe(false) + // A price the storefront does not list is refused, not quietly charged. const wrongPrice = await buy('20250718.01', [{ id: AVATAR_ID, price: 1 }]) expect(((await wrongPrice.json()) as { Success: boolean }).Success).toBe(false) @@ -929,11 +995,11 @@ describe('econ endpoints', () => { const unversioned = await buy(undefined, [{ id: AVATAR_ID, price: 600 }]) expect(((await unversioned.json()) as { Success: boolean }).Success).toBe(false) - // The two id spaces do not overlap, so a bag may MIX a captured storefront's item with a - // catalog row. Item 73 is sf3's "Bowtie (White)" at 450. + // A bag may MIX an item the STOREFRONT FILE lists with one resolved straight off the + // `catalog` table. const mixed = await buy('20250718.01', [ - { id: 73, price: 450 }, - { id: SKIN_ID, price: 150 }, + { id: SF3_ITEM.id, price: SF3_ITEM.price }, + { id: AVATAR_ID, price: 600 }, ]) expect(((await mixed.json()) as { Success: boolean }).Success).toBe(true) @@ -944,69 +1010,62 @@ describe('econ endpoints', () => { .run() }) - test('POST /api/avatar/v1/lockeditems/bulk returns the catalogue as a bare array', async () => { - const res = await exports.default.fetch(`${ORIGIN}/api/avatar/v1/lockeditems/bulk`, { - method: 'POST', - headers: { ...(await bearer()), 'content-type': 'application/json' }, - body: JSON.stringify({ - AvatarItemDescriptions: [ - 'c70005d5-6276-4a98-acb3-6a77bc19379a,OBcu3bf1NEio_7t9smqGag', - '4eaaad39-aa44-4791-8b67-2eafa8305850', - ], - }), - }) - expect(res.status).toBe(200) - - // A BARE ARRAY, no envelope. - const body = (await res.json()) as Array<{ - AvatarItemType: number - AvatarItemDesc: string - FriendlyName: string - Rarity: number - }> - expect(Array.isArray(body)).toBe(true) - - // TEST STUB: the whole bundled catalogue, whatever was posted. Pinned so the day this - // grows real lock logic, the change is visible here rather than silently altering what a - // client is told is locked. - expect(body).toHaveLength(avatarItemsJson.length) - expect(body[0]).toMatchObject({ - AvatarItemDesc: avatarItemsJson[0]!.AvatarItemDesc, - FriendlyName: avatarItemsJson[0]!.FriendlyName, - }) - - // Every entry carries the shape the client reads, including the four fields the - // `defaultunlocked` catalogue leaves out. - for (const key of [ - 'AvatarItemType', - 'AvatarItemDesc', - 'FriendlyName', - 'Tooltip', - 'Rarity', - 'AvatarItemId', - 'IsBaseAvatarItem', - 'ThumbnailImage', - 'CreatedAt', - ]) { - expect(Object.keys(body[0] as object), key).toContain(key) + test('lockeditems/bulk filters by exact AvatarItemDesc, in catalogue order', async () => { + const ask = async ( + descs: unknown + ): Promise> => { + const res = await exports.default.fetch(`${ORIGIN}/api/avatar/v1/lockeditems/bulk`, { + method: 'POST', + headers: { 'content-type': 'application/json' }, + body: JSON.stringify(descs === undefined ? {} : { AvatarItemDescriptions: descs }), + }) + expect(res.status).toBe(200) + return (await res.json()) as Array<{ AvatarItemDesc: string; FriendlyName: string }> } - // Nothing is echoed: the posted descs are not read, so what comes back is unrelated to - // what was asked for. A real implementation answers one entry per posted desc. - expect(body.map((i) => i.AvatarItemDesc)).not.toEqual([ - 'c70005d5-6276-4a98-acb3-6a77bc19379a,OBcu3bf1NEio_7t9smqGag', - '4eaaad39-aa44-4791-8b67-2eafa8305850', + // Three real catalogue entries, deliberately asked for OUT of catalogue order. + const [first, second, third] = [ + avatarItemsJson[0]!, + avatarItemsJson[40]!, + avatarItemsJson[900]!, + ] + + const got = await ask([third.AvatarItemDesc, first.AvatarItemDesc, second.AvatarItemDesc]) + expect(got).toHaveLength(3) + // In CATALOGUE order, not request order: the reference's filter walks the catalogue, so + // the response must never be read positionally against what was asked for. + expect(got.map((i) => i.AvatarItemDesc)).toEqual([ + first.AvatarItemDesc, + second.AvatarItemDesc, + third.AvatarItemDesc, ]) - // No auth needed, and a body it cannot read is not an error — the answer does not depend - // on either. - const anon = await exports.default.fetch(`${ORIGIN}/api/avatar/v1/lockeditems/bulk`, { + // The match is the WHOLE desc, not the base asset: asking for a plain base does not drag + // in every colourway built on it. + const one = await ask([first.AvatarItemDesc]) + expect(one).toHaveLength(1) + expect(one[0]?.AvatarItemDesc).toBe(first.AvatarItemDesc) + + // A miss is not an error: unknown descs are absent and do not cost the caller the batch. + expect( + (await ask(['no-such-desc,,,', first.AvatarItemDesc])).map((i) => i.AvatarItemDesc) + ).toEqual([first.AvatarItemDesc]) + expect(await ask(['no-such-desc,,,'])).toEqual([]) + + // EMPTY or absent means the WHOLE catalogue — the reference's "give me everything" case, + // not a degenerate match-nothing. + expect(await ask([])).toHaveLength(avatarItemsJson.length) + expect(await ask(undefined)).toHaveLength(avatarItemsJson.length) + + // No auth needed, and a body that will not parse falls back to the catalogue rather than + // erroring. + const junk = await exports.default.fetch(`${ORIGIN}/api/avatar/v1/lockeditems/bulk`, { method: 'POST', headers: { 'content-type': 'application/json' }, - body: JSON.stringify({}), + body: 'not json', }) - expect(anon.status).toBe(200) - expect(((await anon.json()) as unknown[]).length).toBe(avatarItemsJson.length) + expect(junk.status).toBe(200) + expect(((await junk.json()) as unknown[]).length).toBe(avatarItemsJson.length) }) test('POST /api/items/purchaseInfos prices custom avatar items in tokens', async () => { @@ -1306,9 +1365,9 @@ describe('econ endpoints', () => { headers: { ...(await at('20250718.01')), 'Content-Type': 'application/json' }, body: JSON.stringify({ StorefrontType: 3, - PurchasableItemId: 73, // sf3's "Bowtie (White)", 450 tokens + PurchasableItemId: SF3_ITEM.id, // an avatar item the generated sf3 sells CurrencyType: 2, - RequestedPrice: 450, + RequestedPrice: SF3_ITEM.price, }), }) expect(bowtie.status).toBe(200) @@ -1317,7 +1376,7 @@ describe('econ endpoints', () => { // listing-only swap breaks. `findStoreItem` resolves the purchase through the same // build-aware path the listing does, so an item on the page is an item that can be bought. // From the catalog half — see `catalogItems`, which is why this is not an id comparison. - const catalogItem = catalogItems()[0] + const catalogItem = sf32025.StoreItems.find((i) => i.PurchasableItemId === NEWER_ONLY.id) expect(catalogItem).toBeDefined() const bought = await exports.default.fetch(`${ORIGIN}/api/storefronts/v2/buyItem`, { method: 'POST', @@ -1331,7 +1390,8 @@ describe('econ endpoints', () => { }) expect(bought.status).toBe(200) - // The SAME item is not for sale to an old build, because its store does not list it. + // The SAME item is not for sale to an old build: it postdates the cutoff, so sf3 — which + // is generated to that date — does not list it. const refused = await exports.default.fetch(`${ORIGIN}/api/storefronts/v2/buyItem`, { method: 'POST', headers: { ...(await at('20230414')), 'Content-Type': 'application/json' }, @@ -1345,32 +1405,40 @@ describe('econ endpoints', () => { expect(refused.status).toBe(404) }) - test('sf3-2025 merges sf3 with the catalog, priced by rarity', async () => { - // The general store as the 2025 client sees it. Asserted against the FILE rather than the - // endpoint, because which file the route serves depends on the caller's build and this is - // about the file's contents. - // - // It reports storefront 3, not an id of its own: the client asks for 3 either way and - // neither half knows there are two files. + test('sf3 and sf3-2025 are the same store at two points in time', async () => { + // BOTH are generated from the item catalog now — sf3 is no longer a capture. They report + // the same storefront id, because they are two versions of ONE store and the client asks + // for 3 either way. + expect(sf3.StorefrontType).toBe(3) expect(sf32025.StorefrontType).toBe(3) - // sf3's own items are carried through UNCHANGED — the merge adds to the store the older - // client knows rather than restating it. - const base = new Map(sf3.StoreItems.map((i) => [i.PurchasableItemId, i])) - expect(sf32025.StoreItems.length).toBe(sf3.StoreItems.length + catalogItems().length) - for (const [id, item] of base) { - expect( - sf32025.StoreItems.find((i) => i.PurchasableItemId === id), - String(id) - ).toEqual(item) + // sf3 is a strict SUBSET of sf3-2025: same items, same ids, same prices — it just stops at + // the cutoff. Anything else would mean a player's store changed under them on upgrade. + const newer = new Map(sf32025.StoreItems.map((i) => [i.PurchasableItemId, i])) + for (const item of sf3.StoreItems) { + expect(newer.get(item.PurchasableItemId), String(item.PurchasableItemId)).toEqual(item) + } + expect(sf3.StoreItems.length).toBeLessThan(sf32025.StoreItems.length) + + // Ids are unique within each file. The merge of carried and generated halves is only safe + // because their id spaces don't overlap, so a collision must fail rather than be resolved + // by array order. + for (const [label, file] of [ + ['sf3', sf3], + ['sf3-2025', sf32025], + ] as const) { + const ids = file.StoreItems.map((i) => i.PurchasableItemId) + expect(new Set(ids).size, label).toBe(ids.length) } - // The subscriber discount is expressed ONLY in `SubscriberPrices`. The top-level - // `SubscriberDiscountPercent` stays 0 so a client cannot take the 10% a second time off an - // already-discounted price and post 19% off, which falls through the server's own - // subscriber floor and is refused as "Price has changed". + // The discount is expressed ONLY in `SubscriberPrices`; announcing it again at the top + // level risks a client taking 10% off an already-discounted price and posting through the + // server's own subscriber floor, refused as "Price has changed". + expect(sf3.SubscriberDiscountPercent).toBe(0) expect(sf32025.SubscriberDiscountPercent).toBe(0) + // Every GENERATED item is priced from its rarity, and rarity -1 (the developer tier) is + // excluded rather than priced — an item listed here can be bought. const priceByRarity = new Map([ [0, 150], [10, 600], @@ -1378,45 +1446,46 @@ describe('econ endpoints', () => { [30, 800], [50, 3000], ]) - // Rarity -1 is the developer/unreleased tier and is EXCLUDED rather than priced. An item - // listed here can be bought — `findStoreItem` resolves a purchase against this very file — - // so leaving them in at any price would put them on sale. - expect(catalogItems().filter((i) => i.GiftDrop.Rarity === -1)).toEqual([]) - for (const item of catalogItems()) { const expected = priceByRarity.get(item.GiftDrop.Rarity) expect(expected, `rarity ${item.GiftDrop.Rarity}`).toBeDefined() expect(item.Prices[0]).toMatchObject({ CurrencyType: 2, Price: expected }) - // Floored, matching the server's own `subscriberFloor`. Every tier here divides evenly. + // Floored, matching the server's own `subscriberFloor`. expect(item.SubscriberPrices[0]).toMatchObject({ CurrencyType: 2, Price: Math.floor((expected! * 90) / 100), }) + // `GiftDropId` echoes the id, as the capture did on all 1161 of its items. + expect(item.GiftDrop.GiftDropId).toBe(item.PurchasableItemId) + expect(item.PurchasableItemId).toBeGreaterThanOrEqual(CATALOG_ID_BASE) + } + expect(catalogItems().filter((i) => i.GiftDrop.Rarity === -1)).toEqual([]) + + // The CARRIED half — 30 consumables and 5 random boxes — comes from + // `static/db/consumables.json`, what survives of the 2023 capture. The item catalog does + // not model these, so they keep their own ids and prices. + const carried = sf3.StoreItems.filter((i) => capturedIds.has(i.PurchasableItemId)) + expect(carried.length).toBeGreaterThan(0) + expect(carried.every((i) => (i.GiftDrop.AvatarItemDesc ?? '') === '')).toBe(true) + + // And NO equipment skins anywhere in either file: they are awarded from weekly challenges, + // so a store listing one would sell something the game gives away. + for (const [label, file] of [ + ['sf3', sf3], + ['sf3-2025', sf32025], + ] as const) { + expect( + file.StoreItems.filter((i) => (i.GiftDrop.EquipmentModificationGuid ?? '') !== ''), + label + ).toEqual([]) } - // Every item is an avatar item with a real desc, and its id is in the GENERATED range, - // echoed in `GiftDropId` the way sf3 does on all 1161 of its own items. Ids must be unique - // or a purchase resolves the wrong row. - const ids = catalogItems().map((i) => i.PurchasableItemId) - expect(new Set(ids).size).toBe(ids.length) - - // The id IS the `catalog_id` — one number, no second numbering and no arithmetic between - // them. Catalog ids start at 10000 precisely so this is safe: every captured storefront's - // own ids are 2764 or below, and numbering from 1 would have collided with sf3's head-on, - // making one id mean two different items depending on which storefront it came from. - expect(Math.min(...ids)).toBe(CATALOG_ID_BASE) - expect(ids.every((id) => id >= CATALOG_ID_BASE)).toBe(true) - expect(catalogItems().every((i) => i.GiftDrop.GiftDropId === i.PurchasableItemId)).toBe(true) - expect(catalogItems().every((i) => i.GiftDrop.AvatarItemDesc.length > 0)).toBe(true) - - // An id with neither a capture nor an alias still 404s. - const missing = await exports.default.fetch(`${ORIGIN}/api/storefronts/v3/giftdropstore/1705`) - expect(missing.status).toBe(404) - - // 1704 is gone: it was a stand-in for a store that turned out to belong inside sf3, so - // nothing answers that id any more. - const gone = await exports.default.fetch(`${ORIGIN}/api/storefronts/v3/giftdropstore/1704`) - expect(gone.status).toBe(404) + // An id with no storefront still 404s, and 1704 is gone — it was a stand-in for a store + // that turned out to belong inside sf3. + for (const id of [1705, 1704]) { + const res = await exports.default.fetch(`${ORIGIN}/api/storefronts/v3/giftdropstore/${id}`) + expect(res.status, String(id)).toBe(404) + } }) // Item 73 in sf3.json — "Bowtie (White)", 450 RecCenterTokens (CurrencyType 2). @@ -1426,9 +1495,9 @@ describe('econ endpoints', () => { headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ StorefrontType: 3, - PurchasableItemId: 73, + PurchasableItemId: SF3_ITEM.id, CurrencyType: 2, - RequestedPrice: 450, + RequestedPrice: SF3_ITEM.price, }), }) expect(res.status).toBe(401) @@ -1442,9 +1511,9 @@ describe('econ endpoints', () => { headers: { ...(await bearer('20')), 'Content-Type': 'application/json' }, body: JSON.stringify({ StorefrontType: 3, - PurchasableItemId: 73, + PurchasableItemId: SF3_ITEM.id, CurrencyType: 2, - RequestedPrice: 450, + RequestedPrice: SF3_ITEM.price, }), }) expect(res.status).toBe(200) @@ -1457,7 +1526,7 @@ describe('econ endpoints', () => { }> } // `Balance` is the change applied (the negated price), not the resulting total. - expect(body.Balance).toBe(-450) + expect(body.Balance).toBe(-SF3_ITEM.price) expect(body.CurrencyType).toBe(2) expect(body.BalanceType).toBe(-2) const gift = body.BalanceUpdates[0].Data[0] @@ -1478,8 +1547,8 @@ describe('econ endpoints', () => { payload: { // 1400 = CommercePurchase; -2 = NonPurchasedNotUsableInP2P, the only bucket we use. BalanceAddType: 1400, - Delta: -450, - Balance: 9550, + Delta: -SF3_ITEM.price, + Balance: DEFAULT_STARTING_TOKENS - SF3_ITEM.price, Platform: -2, CurrencyType: 2, }, @@ -1490,14 +1559,16 @@ describe('econ endpoints', () => { const bal = await exports.default.fetch(`${ORIGIN}/api/storefronts/v4/balance/2`, { headers: await bearer('20'), }) - expect(await bal.json()).toEqual([{ CurrencyType: 2, Platform: -2, Balance: 9550 }]) + expect(await bal.json()).toEqual([ + { CurrencyType: 2, Platform: -2, Balance: DEFAULT_STARTING_TOKENS - SF3_ITEM.price }, + ]) // The item is now owned — it leads the v4/items list (owned items prepend the catalog). const items = await exports.default.fetch(`${ORIGIN}/api/avatar/v4/items`, { headers: await bearer('20'), }) const list = (await items.json()) as Array<{ avatarItemDesc: string; friendlyName: string }> - expect(list[0].friendlyName).toBe('Bowtie (White)') + expect(list[0].friendlyName).toBe(SF3_ITEM.name) expect(list[0].avatarItemDesc).toBe(gift.AvatarItemDesc) // And a pending gift box is waiting to be opened. @@ -1592,96 +1663,10 @@ describe('econ endpoints', () => { expect(second[0].CreatedAts).toHaveLength(2) }) - test('POST /api/storefronts/v2/buyItem grants equipment, read back by getUnlocked, no re-buy dupe', async () => { - // Item 1950 (Disc Skin (Coop)) in storefront 3 is a pure equipment drop — its - // gift-drop carries an EquipmentModificationGuid but no avatar/consumable desc. - const guid = '19ef59c7-f74b-4c63-935a-1d4b1abd8518' - const buy = async () => - exports.default.fetch(`${ORIGIN}/api/storefronts/v2/buyItem`, { - method: 'POST', - headers: { ...(await bearer('31')), 'Content-Type': 'application/json' }, - body: JSON.stringify({ - StorefrontType: 3, - PurchasableItemId: 1950, - CurrencyType: 2, - RequestedPrice: 3500, - }), - }) - - const res = await buy() - expect(res.status).toBe(200) - const body = (await res.json()) as { - Balance: number - BalanceUpdates: Array<{ - Data: Array<{ Id: number; EquipmentModificationGuid: string; EquipmentPrefabName: string }> - }> - } - expect(body.Balance).toBe(-3500) - const gift = body.BalanceUpdates[0].Data[0] - expect(gift.EquipmentModificationGuid).toBe(guid) - expect(gift.EquipmentPrefabName).toBe('[DiscGolfDisc]') - - const unlocked = async () => { - const r = await exports.default.fetch(`${ORIGIN}/api/equipment/v2/getUnlocked`, { - headers: await bearer('31'), - }) - expect(r.status).toBe(200) - return (await r.json()) as Array<{ - ModificationGuid: string - PrefabName: string - FriendlyName: string - PlatformMask: number - Favorited: boolean - }> - } - const first = await unlocked() - expect(first).toHaveLength(1) - // The unlocked DTO is unprefixed, unlike the gift-drop the grant came from. - expect(first[0].ModificationGuid).toBe(guid) - expect(first[0].PrefabName).toBe('[DiscGolfDisc]') - expect(first[0].FriendlyName).toBe('Disc Skin (Coop)') - expect(first[0].PlatformMask).toBe(-1) - - // Equipment is not an avatar item — it does not show up in v4/items. - const items = await exports.default.fetch(`${ORIGIN}/api/avatar/v4/items`, { - headers: await bearer('31'), - }) - const list = (await items.json()) as Array<{ friendlyName: string }> - expect(list.every((i) => i.friendlyName !== 'Disc Skin (Coop)')).toBe(true) - - expect(first[0].Favorited).toBe(false) - - // Owning equipment is boolean: re-buying upserts, it does not add a second row. - expect((await buy()).status).toBe(200) - expect(await unlocked()).toHaveLength(1) - - // Favouriting sticks. - const update = async (favorited: boolean, method: 'PUT' | 'POST' = 'PUT') => - exports.default.fetch(`${ORIGIN}/api/equipment/v1/update`, { - method, - headers: { ...(await bearer('31')), 'Content-Type': 'application/json' }, - body: JSON.stringify([ - { PrefabName: '[DiscGolfDisc]', ModificationGuid: guid, Favorited: favorited }, - // A guid the caller doesn't own is silently skipped, not inserted. - { PrefabName: '[Basketball]', ModificationGuid: 'not-owned', Favorited: true }, - ]), - }) - expect((await update(true)).status).toBe(200) - let after = await unlocked() - expect(after).toHaveLength(1) - expect(after[0].Favorited).toBe(true) - - // …and un-favouriting flips it back. - expect((await update(false)).status).toBe(200) - after = await unlocked() - expect(after[0].Favorited).toBe(false) - - // The client sends this as a POST too, with the same body — same effect. - expect((await update(true, 'POST')).status).toBe(200) - expect((await unlocked())[0]?.Favorited).toBe(true) - expect((await update(false, 'POST')).status).toBe(200) - expect((await unlocked())[0]?.Favorited).toBe(false) - }) + // The equipment-purchase test that lived here is gone: skins are awarded from weekly + // challenges rather than sold, so no storefront lists one and the bulk bag will not resolve + // one off the catalog either. Equipment GRANTING is still covered — the weekly challenge + // reward path grants a skin and reads it back through `getUnlocked`. test('POST /api/equipment/v1/update favourites from the client’s own body', async () => { // The body verbatim as the client sends it — a full echo of the entry it was served, @@ -1752,7 +1737,7 @@ describe('econ endpoints', () => { headers: { ...(await bearer('21')), 'Content-Type': 'application/json' }, body: JSON.stringify({ StorefrontType: 3, - PurchasableItemId: 73, + PurchasableItemId: SF3_ITEM.id, CurrencyType: 2, RequestedPrice: 1, }), @@ -1863,16 +1848,20 @@ describe('econ endpoints', () => { .run() } - /** Buy sf3's item 2107 (Backpack Skin (Camo), 3500) with a `Gift` block, as the client posts it. */ + /** + * Buy one sf3 item with a `Gift` block, as the client posts it. This used to buy an equipment + * skin; skins are awarded from weekly challenges rather than sold, so the store no longer + * lists one and these tests use an ordinary avatar item — they are about GIFTING either way. + */ const giftBackpack = async (sub: string, gift: Record | null) => exports.default.fetch(`${ORIGIN}/api/storefronts/v2/buyItem`, { method: 'POST', headers: { ...(await bearer(sub)), 'Content-Type': 'application/json' }, body: JSON.stringify({ StorefrontType: 3, - PurchasableItemId: 2107, + PurchasableItemId: SF3_ITEM.id, CurrencyType: 2, - RequestedPrice: 3500, + RequestedPrice: SF3_ITEM.price, CouponConsumablePlayerMappingId: null, Gift: gift, }), @@ -1886,14 +1875,6 @@ describe('econ endpoints', () => { return (await res.json()) as Array> } - const equipment = async (sub: string) => { - const res = await exports.default.fetch(`${ORIGIN}/api/equipment/v2/getUnlocked`, { - headers: await bearer(sub), - }) - expect(res.status).toBe(200) - return (await res.json()) as Array<{ ModificationGuid: string }> - } - test('POST /api/storefronts/v2/buyItem charges the buyer and hands the item to the gift’s receiver', async () => { await seedAccount(205, 'GiftReceiver') await drainFrames() @@ -1905,18 +1886,25 @@ describe('econ endpoints', () => { }) expect(res.status).toBe(200) // The buyer pays — `Balance` is their change — even though nothing lands on them. - expect(((await res.json()) as { Balance: number }).Balance).toBe(-3500) + expect(((await res.json()) as { Balance: number }).Balance).toBe(-SF3_ITEM.price) const bal = await exports.default.fetch(`${ORIGIN}/api/storefronts/v4/balance/2`, { headers: await bearer('330'), }) - expect(await bal.json()).toEqual([{ CurrencyType: 2, Platform: -2, Balance: 10000 - 3500 }]) + expect(await bal.json()).toEqual([ + { CurrencyType: 2, Platform: -2, Balance: DEFAULT_STARTING_TOKENS - SF3_ITEM.price }, + ]) - // The item and its box are the RECEIVER's; the buyer keeps neither. - expect(await equipment('330')).toEqual([]) + // The item and its box are the RECEIVER's; the buyer keeps neither. An avatar item lands + // in the inventory rather than the equipment list — `v4/items` leads with what is owned. expect(await pendingGifts('330')).toEqual([]) - const [box, ...rest] = await equipment('205') - expect(rest).toEqual([]) - expect(box?.ModificationGuid).toBe('523e3615-4633-41a3-9b2d-17d3207a684b') + const ownedBy = async (sub: string) => { + const res = await exports.default.fetch(`${ORIGIN}/api/avatar/v4/items`, { + headers: await bearer(sub), + }) + return (await res.json()) as Array<{ avatarItemDesc: string; friendlyName: string }> + } + expect((await ownedBy('330'))[0]?.friendlyName).not.toBe(SF3_ITEM.name) + expect((await ownedBy('205'))[0]?.friendlyName).toBe(SF3_ITEM.name) const [gift, ...others] = await pendingGifts('205') expect(others).toEqual([]) // The box outlives the request, so it carries who sent it and why — the receiver may @@ -1936,7 +1924,8 @@ describe('econ endpoints', () => { FromPlayerId: 330, GiftContext: 500, Message: 'hello this is a message', - EquipmentModificationGuid: '523e3615-4633-41a3-9b2d-17d3207a684b', + // An avatar item, so the equipment half of the drop is empty and the desc carries it. + EquipmentModificationGuid: '', }) // …and the spend frame still goes to the BUYER, who is the one who paid. const spend = frames.find( @@ -2043,7 +2032,7 @@ describe('econ endpoints', () => { StorefrontType: 3, PurchasableItemId: 9999999, CurrencyType: 2, - RequestedPrice: 450, + RequestedPrice: SF3_ITEM.price, }), }) expect(res.status).toBe(404) @@ -2059,9 +2048,9 @@ describe('econ endpoints', () => { headers: { ...(await bearer('23')), 'Content-Type': 'application/json' }, body: JSON.stringify({ StorefrontType: 3, - PurchasableItemId: 73, + PurchasableItemId: SF3_ITEM.id, CurrencyType: 2, - RequestedPrice: 450, + RequestedPrice: SF3_ITEM.price, }), }) expect(res.status).toBe(400) @@ -2132,7 +2121,7 @@ describe('econ endpoints', () => { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ - PurchaseItemRequests: [line(10, 200)], + PurchaseItemRequests: [line(SF3_ITEM.id, SF3_ITEM.price)], StorefrontType: 3, CurrencyType: 2, }), @@ -2142,11 +2131,15 @@ describe('econ endpoints', () => { test('POST /api/items/bulkpurchase debits the bag once and grants every line', async () => { // Account 90: fresh, so its first balance touch grants the 10000 default. Three donuts - // (a consumable, 100 each — consumables are the only thing that stacks) and one dress - // (an avatar item, 200) — 500 in total. + // (a consumable, 100 each — consumables are the only thing that stacks) and one avatar + // item. The prices come from the fixtures rather than being written out: sf3 is generated + // now, so a repriced rarity tier must not silently invalidate the arithmetic. await drainFrames() const res = await bulkPurchase('90', { - PurchaseItemRequests: [line(2182, 100, { DuplicateItemCount: 3 }), line(10, 200)], + PurchaseItemRequests: [ + line(2182, 100, { DuplicateItemCount: 3 }), + line(SF3_ITEM.id, SF3_ITEM.price), + ], ShoppingBagId: 'bag-1', }) expect(res.status).toBe(200) @@ -2155,17 +2148,17 @@ describe('econ endpoints', () => { expect(body.Error).toBe(null) expect(body.error_id).toBe(null) const value = body.Value! - // `Balance` here is the RESULTING total (10000 - 500), unlike buyItem's change. The + // `Balance` here is the RESULTING total, unlike buyItem's change. The // bucket is -2, the one `GET /balance` reports — the reference server's 4 // (RecNetPurchased) would read as a second balance the client adds to the real one. - expect(value.Balance).toBe(9500) + expect(value.Balance).toBe(DEFAULT_STARTING_TOKENS - 300 - SF3_ITEM.price) expect(value.CurrencyType).toBe(2) expect(value.Platform).toBe(-2) // ONE entry per REQUESTED item — three donuts are one line, so one entry — in order. expect(value.BalanceUpdates).toHaveLength(2) expect(codes(body)).toEqual([0, 0]) - expect(value.BalanceUpdates.map((u) => u.Data.PurchasableItemId)).toEqual([2182, 10]) + expect(value.BalanceUpdates.map((u) => u.Data.PurchasableItemId)).toEqual([2182, SF3_ITEM.id]) expect(value.BalanceUpdates.every((u) => u.Data.CustomAvatarItem === null)).toBe(true) // The box each line produced, as `GiftPackage` carries it: 20 keys, the receiver in // `PlayerId`, a self-buy attributed to the "Coach" account (1), and the platform MASK in @@ -2202,15 +2195,15 @@ describe('econ endpoints', () => { expect(value.BalanceUpdates[1].Data.GiftPackage!.AvatarItemDesc).not.toBe('') // ONE frame for the whole bag, setting the account-wide bucket to the resulting total — - // the same 9500 the body reports, so the two agree instead of compounding. + // the same total the body reports, so the two agree instead of compounding. expect(await drainFrames()).toEqual([ { accountId: 90, notificationType: NotificationType.StorefrontBalancePurchase, payload: { BalanceAddType: 1400, - Delta: -500, - Balance: 9500, + Delta: -(300 + SF3_ITEM.price), + Balance: DEFAULT_STARTING_TOKENS - 300 - SF3_ITEM.price, Platform: -2, CurrencyType: 2, }, @@ -2218,7 +2211,7 @@ describe('econ endpoints', () => { ]) expect( await getBalance(env.DB, 90, CurrencyType.RecCenterTokens, DEFAULT_STARTING_TOKENS) - ).toBe(9500) + ).toBe(DEFAULT_STARTING_TOKENS - 300 - SF3_ITEM.price) // Everything landed: the dress is owned, all three donuts stacked into the one box's // grant, and each LINE left one gift box. @@ -2226,7 +2219,7 @@ describe('econ endpoints', () => { headers: await bearer('90'), }) const list = (await items.json()) as Array<{ friendlyName: string }> - expect(list[0].friendlyName).toBe('Babydoll Dress (Blue)') + expect(list[0].friendlyName).toBe(SF3_ITEM.name) const unlocked = await exports.default.fetch(`${ORIGIN}/api/consumables/v2/getUnlocked`, { headers: await bearer('90'), }) @@ -2245,30 +2238,30 @@ describe('econ endpoints', () => { // The second line's price no longer matches the catalog (200, not 1). The bag still // succeeds — that entry just comes back non-OK, which is what AllowPartialSuccess means. const res = await bulkPurchase('91', { - PurchaseItemRequests: [line(10, 200), line(80, 1)], + PurchaseItemRequests: [line(SF3_ITEM.id, SF3_ITEM.price), line(SF3_CHEAP.id, 1)], }) expect(res.status).toBe(200) const body = (await res.json()) as BulkBody expect(body.Success).toBe(true) expect(body.Error).toBe(null) - expect(body.Value!.Balance).toBe(9800) + expect(body.Value!.Balance).toBe(DEFAULT_STARTING_TOKENS - SF3_ITEM.price) // 6 = RequestedPriceDoesNotMatch. The failed line still names the item it asked for. expect(codes(body)).toEqual([0, 6]) expect(body.Value!.BalanceUpdates[1].Data).toEqual({ GiftPackage: null, - PurchasableItemId: 80, + PurchasableItemId: SF3_CHEAP.id, CustomAvatarItem: null, }) expect( await getBalance(env.DB, 91, CurrencyType.RecCenterTokens, DEFAULT_STARTING_TOKENS) - ).toBe(9800) + ).toBe(DEFAULT_STARTING_TOKENS - SF3_ITEM.price) }) test('POST /api/items/bulkpurchase charges nothing when a line fails and partial success is off', async () => { await drainFrames() const res = await bulkPurchase('92', { AllowPartialSuccess: false, - PurchaseItemRequests: [line(10, 200), line(80, 1)], + PurchaseItemRequests: [line(SF3_ITEM.id, SF3_ITEM.price), line(SF3_CHEAP.id, 1)], }) expect(res.status).toBe(200) const body = (await res.json()) as BulkBody @@ -2283,38 +2276,59 @@ describe('econ endpoints', () => { headers: await bearer('92'), }) const list = (await items.json()) as Array<{ friendlyName: string }> - expect(list.every((i) => i.friendlyName !== 'Babydoll Dress (Blue)')).toBe(true) + expect(list.every((i) => i.friendlyName !== SF3_ITEM.name)).toBe(true) expect(await drainFrames()).toEqual([]) }) test('POST /api/items/bulkpurchase takes the lines that fit, in request order', async () => { - // Leave account 93 with 250 tokens: enough for the first 200-token line, not both. + // Leave account 93 with enough for the FIRST line and not both, whatever the tiers cost. + const fitsOne = SF3_ITEM.price + SF3_CHEAP.price - 1 await getBalance(env.DB, 93, CurrencyType.RecCenterTokens, DEFAULT_STARTING_TOKENS) expect( - await spendCurrency(env.DB, 93, CurrencyType.RecCenterTokens, 9750, DEFAULT_STARTING_TOKENS) + await spendCurrency( + env.DB, + 93, + CurrencyType.RecCenterTokens, + DEFAULT_STARTING_TOKENS - fitsOne, + DEFAULT_STARTING_TOKENS + ) ).toBe(true) const res = await bulkPurchase('93', { - PurchaseItemRequests: [line(10, 200), line(80, 200)], + PurchaseItemRequests: [ + line(SF3_ITEM.id, SF3_ITEM.price), + line(SF3_CHEAP.id, SF3_CHEAP.price), + ], }) const body = (await res.json()) as BulkBody expect(body.Success).toBe(true) - expect(body.Value!.Balance).toBe(50) + expect(body.Value!.Balance).toBe(fitsOne - SF3_ITEM.price) // 2 = NotEnoughCredit for the line the balance no longer covered. expect(codes(body)).toEqual([0, 2]) expect(body.Value!.BalanceUpdates[1].Data.GiftPackage).toBe(null) expect( await getBalance(env.DB, 93, CurrencyType.RecCenterTokens, DEFAULT_STARTING_TOKENS) - ).toBe(50) + ).toBe(fitsOne - SF3_ITEM.price) }) test('POST /api/items/bulkpurchase fails the whole bag it cannot afford when partial success is off', async () => { + // Same shaping as above: enough for one line, not both. + const affordsOne = SF3_ITEM.price + SF3_CHEAP.price - 1 await getBalance(env.DB, 94, CurrencyType.RecCenterTokens, DEFAULT_STARTING_TOKENS) expect( - await spendCurrency(env.DB, 94, CurrencyType.RecCenterTokens, 9750, DEFAULT_STARTING_TOKENS) + await spendCurrency( + env.DB, + 94, + CurrencyType.RecCenterTokens, + DEFAULT_STARTING_TOKENS - affordsOne, + DEFAULT_STARTING_TOKENS + ) ).toBe(true) const res = await bulkPurchase('94', { AllowPartialSuccess: false, - PurchaseItemRequests: [line(10, 200), line(80, 200)], + PurchaseItemRequests: [ + line(SF3_ITEM.id, SF3_ITEM.price), + line(SF3_CHEAP.id, SF3_CHEAP.price), + ], }) const body = (await res.json()) as BulkBody // Even the line that would have fitted is refused: all of it or none. @@ -2323,21 +2337,21 @@ describe('econ endpoints', () => { expect(body.Value).toBe(null) expect( await getBalance(env.DB, 94, CurrencyType.RecCenterTokens, DEFAULT_STARTING_TOKENS) - ).toBe(250) + ).toBe(affordsOne) }) test('POST /api/items/bulkpurchase grants without gift boxes when BypassGiftPackages is set', async () => { const res = await bulkPurchase('95', { BypassGiftPackages: true, - PurchaseItemRequests: [line(10, 200)], + PurchaseItemRequests: [line(SF3_ITEM.id, SF3_ITEM.price)], }) const body = (await res.json()) as BulkBody expect(body.Success).toBe(true) - expect(body.Value!.Balance).toBe(9800) + expect(body.Value!.Balance).toBe(DEFAULT_STARTING_TOKENS - SF3_ITEM.price) // No box was created, so there is none to hand back — the capture's null GiftPackage. expect(body.Value!.BalanceUpdates[0]).toEqual({ UpdateResponse: 0, - Data: { GiftPackage: null, PurchasableItemId: 10, CustomAvatarItem: null }, + Data: { GiftPackage: null, PurchasableItemId: SF3_ITEM.id, CustomAvatarItem: null }, }) const gifts = await exports.default.fetch(`${ORIGIN}/api/avatar/v2/gifts`, { headers: await bearer('95'), @@ -2348,7 +2362,7 @@ describe('econ endpoints', () => { headers: await bearer('95'), }) const list = (await items.json()) as Array<{ friendlyName: string }> - expect(list[0].friendlyName).toBe('Babydoll Dress (Blue)') + expect(list[0].friendlyName).toBe(SF3_ITEM.name) }) test('POST /api/items/bulkpurchase routes a gifted line to its receiver', async () => { @@ -2356,7 +2370,7 @@ describe('econ endpoints', () => { await drainFrames() const res = await bulkPurchase('960', { PurchaseItemRequests: [ - line(10, 200), + line(SF3_ITEM.id, SF3_ITEM.price), line(2182, 100, { Gift: { ToPlayerId: 207, Message: 'from the bag', Anonymous: false, GiftContext: 500 }, }), @@ -2365,7 +2379,7 @@ describe('econ endpoints', () => { const body = (await res.json()) as BulkBody expect(body.Success).toBe(true) // The buyer pays for both lines; only the first one lands on them. - expect(body.Value!.Balance).toBe(10000 - 300) + expect(body.Value!.Balance).toBe(DEFAULT_STARTING_TOKENS - SF3_ITEM.price - 100) const [own, gifted] = body.Value!.BalanceUpdates expect(own?.Data.GiftPackage).toMatchObject({ PlayerId: 960, FromPlayerId: 1 }) expect(gifted?.Data.GiftPackage).toMatchObject({ @@ -2389,7 +2403,7 @@ describe('econ endpoints', () => { test('POST /api/items/bulkpurchase 404s a bag gifting to a player that does not exist', async () => { const res = await bulkPurchase('970', { PurchaseItemRequests: [ - line(10, 200), + line(SF3_ITEM.id, SF3_ITEM.price), line(2182, 100, { Gift: { ToPlayerId: 999998, Message: 'hi', Anonymous: false } }), ], }) @@ -2408,20 +2422,20 @@ describe('econ endpoints', () => { const res = await bulkPurchase('96', { PurchaseItemRequests: [ // A guid-keyed (UGC) item — nothing here sells one, and it has no NumberId to echo. - line(0, 200, { + line(0, SF3_ITEM.price, { ItemPurchaseMethodId: { Type: 1, NumberId: null, Guid: 'a3f1-not-a-catalog-item' }, }), // Nothing issues coupons, so a line claiming one is refused rather than charged full // price for a discount it thinks it applied. - line(10, 200, { CouponConsumablePlayerMappingId: 4242 }), - line(999999, 200), - line(10, 200, { DuplicateItemCount: 0 }), + line(SF3_ITEM.id, SF3_ITEM.price, { CouponConsumablePlayerMappingId: 4242 }), + line(999999, SF3_ITEM.price), + line(SF3_ITEM.id, SF3_ITEM.price, { DuplicateItemCount: 0 }), // An avatar item is owned once — a second copy would grant nothing and charge for it. - line(80, 200, { DuplicateItemCount: 2 }), + line(SF3_CHEAP.id, SF3_CHEAP.price, { DuplicateItemCount: 2 }), // The catalog prices this item in RecCenterTokens only. line(2182, 100), // …and one that works, so the bag is a partial success rather than a refusal. - line(10, 200), + line(SF3_ITEM.id, SF3_ITEM.price), ], CurrencyType: 2, }) @@ -2432,15 +2446,15 @@ describe('econ endpoints', () => { // RequestedAmountNotAllowed, 0 OK (the donuts do price in tokens), 0 OK. expect(codes(body)).toEqual([4, 5, 4, 7, 7, 0, 0]) expect(body.Value!.BalanceUpdates[0].Data.PurchasableItemId).toBe(null) - // Only the two OK lines were charged (100 + 200). - expect(body.Value!.Balance).toBe(9700) + // Only the two OK lines were charged: the donuts and one avatar item. + expect(body.Value!.Balance).toBe(DEFAULT_STARTING_TOKENS - 100 - SF3_ITEM.price) expect(await drainFrames()).toHaveLength(1) }) test('POST /api/items/bulkpurchase refuses a bag where nothing sells', async () => { const res = await bulkPurchase('97', { CurrencyType: CurrencyType.LaserTagTickets, - PurchaseItemRequests: [line(10, 200)], + PurchaseItemRequests: [line(SF3_ITEM.id, SF3_ITEM.price)], }) expect(res.status).toBe(200) const body = (await res.json()) as BulkBody @@ -2460,7 +2474,7 @@ describe('econ endpoints', () => { // A room-scoped currency is not an account balance we can debit. const roomCurrency = await bulkPurchase('98', { CurrencyType: CurrencyType.RoomCurrency, - PurchaseItemRequests: [line(10, 200)], + PurchaseItemRequests: [line(SF3_ITEM.id, SF3_ITEM.price)], }) expect(roomCurrency.status).toBe(400) expect(((await roomCurrency.json()) as BulkBody).Error).toBe('Currency type is not spendable') @@ -2640,9 +2654,9 @@ describe('econ endpoints', () => { headers: { ...(await bearer('24')), 'Content-Type': 'application/json' }, body: JSON.stringify({ StorefrontType: 3, - PurchasableItemId: 73, + PurchasableItemId: SF3_ITEM.id, CurrencyType: 2, - RequestedPrice: 450, + RequestedPrice: SF3_ITEM.price, }), }) const bought = (await buy.json()) as { @@ -2670,7 +2684,7 @@ describe('econ endpoints', () => { headers: await bearer('24'), }) const list = (await items.json()) as Array<{ friendlyName: string }> - expect(list.some((i) => i.friendlyName === 'Bowtie (White)')).toBe(true) + expect(list.some((i) => i.friendlyName === SF3_ITEM.name)).toBe(true) // Opening it again is a harmless no-op — still 200. const again = await exports.default.fetch(`${ORIGIN}/api/avatar/v2/gifts/consume/`, { @@ -2735,9 +2749,9 @@ describe('econ endpoints', () => { headers: { ...(await bearer('27')), 'Content-Type': 'application/json' }, body: JSON.stringify({ StorefrontType: 3, - PurchasableItemId: 73, + PurchasableItemId: SF3_ITEM.id, CurrencyType: 2, - RequestedPrice: 450, + RequestedPrice: SF3_ITEM.price, }), }) const giftId = ( @@ -2796,6 +2810,24 @@ describe('econ endpoints', () => { expect(buildRotation(nextWeek).StartAt).toBe(buildRotation(at).EndAt) }) + test('the weekly gift pool leaves out the sandbox dice', async () => { + // The pool is the catalog's skins, and a sixth of them are `[Sandbox_D4]`…`[Sandbox_D20]` + // recolours. A week themed on "Sandbox D8 (Pewter)" spends its headline reward on a die, so + // those prefabs are excluded — everything else is fair game. + const res = await exports.default.fetch(`${ORIGIN}/api/challenge/v2/getCurrent`) + expect(res.status).toBe(200) + const week = (await res.json()) as { + ChallengeThemeString: string + Gift: { EquipmentPrefabName: string } + } + expect(week.Gift.EquipmentPrefabName.startsWith('[Sandbox_')).toBe(false) + expect(week.ChallengeThemeString).not.toMatch(/^Sandbox D/) + + // It still rolls something: excluding the dice must not empty the pool, which would leave + // the week themed on nothing. + expect(week.ChallengeThemeString).not.toBe('') + }) + test('the week is themed on the name of the item it rolls', async () => { // `ChallengeThemeString` is the reward's catalog FriendlyName. The static file ships it // empty on purpose — a generated week's gift isn't known until it is rolled — so the @@ -3772,7 +3804,12 @@ describe('econ endpoints', () => { describe('catalog', () => { // One row of each kind, plus the cases that decided the schema: an avatar_item_id shared by // two rows and absent from a third, and keys that are alpha strings rather than GUIDs. + // + // Starts from an EMPTY table: the suite-wide setup seeds skins for the weekly-challenge gift + // pool, and the exact counts and lists below are about these rows alone. This block is the + // last in the file, so clearing is safe. beforeAll(async () => { + await env.DB.prepare('DELETE FROM catalog').run() const insert = (row: unknown[]) => env.DB.prepare( `INSERT INTO catalog ( diff --git a/apps/econ/static/db/consumables.json b/apps/econ/static/db/consumables.json new file mode 100644 index 0000000..78a574f --- /dev/null +++ b/apps/econ/static/db/consumables.json @@ -0,0 +1,1402 @@ +[ + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "frOMH6WxDEG1fBqC4_83vg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Black & White)", + "GiftDropId": 2168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some black and white photos. Debug: 2168", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "m0bVLwWGj0GuIBSb6wCk6Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Dawn)", + "GiftDropId": 2169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some sun-soaked photos. Debug: 2169", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "A5M-yf9tgUihq1uab3v58g", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Sepia)", + "GiftDropId": 2174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some old-timey photos. Debug: 2174", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "-hy0qD-iUk-v4NHxNzanmg", + "Context": 4004, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Five Potion (Golden)", + "GiftDropId": 2176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Give golden high fives for a time. Debug: 2176", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "VQSgL2pTLkWx4B3kwYG7UA", + "Context": 4014, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Five Potion (Magic)", + "GiftDropId": 2179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Give magical high fives for a time. Debug: 2179", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "xwQWBB_fekmTqRc2LB92cg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "87 Flavor Cake", + "GiftDropId": 2181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2181", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "ZuvkidodzkuOfGLDnTOFyg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Assorted Donuts", + "GiftDropId": 2182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "A dozen assorted donuts to share with friends. Debug: 2182", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "iiGTvhOCHkOTNJhb16Zbyw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Bubbly", + "GiftDropId": 2183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 2183", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "EmPvh3I6L0uK_1i8Wy_ylQ", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Candy Apples", + "GiftDropId": 2184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 2184", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "Sk_1sm88ZU2zpWn01Lv7hw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Celebration Cake", + "GiftDropId": 2185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2185", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "5hIAZ9wg5EyG1cILf4FS2A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheese Pizza", + "GiftDropId": 2186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A cheese pizza to share with friends. Debug: 2186", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 85, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 85, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "BbJb1_0g4EGJP_CeNrjpew", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chocolate Cake", + "GiftDropId": 2187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2187", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "mMCGPgK3tki5S_15q2Z81A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chocolate Donuts", + "GiftDropId": 2188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A dozen chocolate donuts to share with friends. Debug: 2188", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "K9RbXo-4U0q6NbGu8VL1Sw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Assorted Chocolates", + "GiftDropId": 2189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Assorted chocolates to share with friends! Debug: 2189", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "7OZ5AE3uuUyqa0P-2W1ptg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glazed Donuts", + "GiftDropId": 2190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A dozen glazed donuts to share with friends. Debug: 2190", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "_jnjYGBcyEWY5Ub4OezXcA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hawaiian Pizza", + "GiftDropId": 2191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A ham and pineapple pizza to share with friends. Debug: 2191", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "P15H1ONBhk-5DYYjid1ttg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tray of Lattes", + "GiftDropId": 2192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "Four hot lattes to share with friends. Debug: 2192", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "mq23W-RSP0G8iGNLdrcpUw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pepperoni Pizza", + "GiftDropId": 2193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A pepperoni pizza to share with friends. Debug: 2193", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "QRx0aSTT9keMFdAJMQHdTg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Popcorn", + "GiftDropId": 2194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 2194", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "LwaotjVEBUir0-w8126n_g", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Velvet Cake", + "GiftDropId": 2196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2196", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "JfnVXFmilU6ysv-VbTAe3A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Root Beer", + "GiftDropId": 2197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A sixer of root beer to share with friends. Debug: 2197", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "InQ25wQMGkG_bvuD5rf2Ag", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Salted Pretzels", + "GiftDropId": 2198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A great snack to share with friends! Debug: 2198", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 75, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 75, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "wUCIKdJSvEmiQHYMyx4X4w", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Supreme Pizza", + "GiftDropId": 2199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "A supreme pizza to share with friends. Debug: 2199", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "4My42w1D1Uu3-98pXB-x_Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sushi", + "GiftDropId": 2200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "15 piece premium sushi set to share with friends Debug: 2200", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "ZtZnYBpKkECJlhHmkj4MiA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Bear Claw", + "GiftDropId": 2201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2201", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "EAhk3ZZdXEmH5wRAXXT24Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Grenade", + "GiftDropId": 2206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2206", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "5AJin8T2iEG7BzOPOgx2HA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Sword & Shield", + "GiftDropId": 2208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2208", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "U38Qe6rhEk6mFvArHfYjng", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Winged Skull", + "GiftDropId": 2209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2209", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "yvqSbK2czkS2sUCRdrGaEw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Star Power", + "GiftDropId": 2210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2210", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "J1WqFNUWo0OBi4LGKPDHWw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Tire Track", + "GiftDropId": 2211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2211", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Common Random box", + "GiftDropId": 2454, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "a random box of Common quality Debug: 2454", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Uncommon Random box", + "GiftDropId": 2455, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "a random box of Uncommon quality Debug: 2455", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rare Random box", + "GiftDropId": 2456, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "a random box of Rare quality Debug: 2456", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Epic Random box", + "GiftDropId": 2457, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "a random box of Epic quality Debug: 2457", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Legendary Random box", + "GiftDropId": 2458, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "a random box of Legendary quality Debug: 2458", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + } +] diff --git a/apps/econ/static/storefronts/sf3-2025.json b/apps/econ/static/storefronts/sf3-2025.json index 63f1030..fab20f2 100644 --- a/apps/econ/static/storefronts/sf3-2025.json +++ b/apps/econ/static/storefronts/sf3-2025.json @@ -1,44246 +1,6 @@ { "NextUpdate": "2226-06-14T00:12:20.1324853Z", "StoreItems": [ - { - "GiftDrop": { - "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Archer Quiver (Grey)", - "GiftDropId": 7, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 7", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 7, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Suit (White)", - "GiftDropId": 8, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 8", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 8, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,9GhnX4Pj4E-wxbPlD8GB-g,YSrGwXybGEqaqHNCS64qOA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Suit (Orange)", - "GiftDropId": 9, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 9", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 9, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Blue)", - "GiftDropId": 10, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 10", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 10, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,d6823e01-69f0-4f85-b94a-74894356a2cf,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Maroon)", - "GiftDropId": 11, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 11", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 11, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c5deba2a-6e35-4b13-8e94-8ba5457f39df,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Yellow)", - "GiftDropId": 12, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 12", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 12, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,e13cf33d-7588-4e2e-955e-f0a29d6380b7,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Brown)", - "GiftDropId": 13, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 13", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 13, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c9589974-c261-485e-b571-cb2f34fb178f,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Green)", - "GiftDropId": 14, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 14", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 14, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,da6d0ced-3d43-4878-a868-925f2ed6fd5b,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Pink)", - "GiftDropId": 15, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 15", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 15, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Jersey (White, Blue)", - "GiftDropId": 16, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 16", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 16, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,e5de2e45-207c-46af-9a5e-eb01a0c621fe,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Jersey (White, Green)", - "GiftDropId": 17, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 17", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 17, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,de0a5a3a-8aff-4799-8269-9efa3aeb383a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Jersey (White, Red)", - "GiftDropId": 18, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 18", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 18, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Jersey (Green)", - "GiftDropId": 19, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 19", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 19, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Blue)", - "GiftDropId": 21, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 21", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 21, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,59a62fa3-9e15-463e-9bd5-3aecdf604c1b,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Black)", - "GiftDropId": 22, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 22", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 22, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,4effd67c-a52f-4b41-a5b0-04287f91a7bc,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Purple)", - "GiftDropId": 23, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 23", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 23, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,ojTIShRZHEOV1qQRfhwvTA,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Green)", - "GiftDropId": 24, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 24", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 24, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,se0-2ylLD0u6sqCVPkeP6A,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Red)", - "GiftDropId": 25, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 25", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 25, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,RU-B71GUF0WPduoSOI1XMg,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Yellow)", - "GiftDropId": 26, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 26", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 26, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eda29bce-5a07-4439-a2a7-cafa11e2ed62,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Belt", - "GiftDropId": 30, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 30", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 30, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4ee2133d-c419-4fbc-9117-746d756a250d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fanny Pack (Cosmic)", - "GiftDropId": 42, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 42", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 42, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Apron (Red)", - "GiftDropId": 43, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 43", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 43, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,HdwZhjrqxE6wuf68MnDhDw,f5z_jhdcqEGjo-1WUmldaw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Apron (Blue)", - "GiftDropId": 44, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 44", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 44, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,b7oobDcDtE-69fhM-5g5AQ,f5z_jhdcqEGjo-1WUmldaw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Apron (Yellow)", - "GiftDropId": 45, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 45", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 45, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,Blev_VFjRUysY_nymGWAVg,f5z_jhdcqEGjo-1WUmldaw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Apron (Green)", - "GiftDropId": 46, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 46", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 46, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Shirt (Orange)", - "GiftDropId": 47, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 47", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 47, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,c5884778-a87f-4612-9717-86fbb65d440f,1695608b-e9cc-4a03-b56d-0f09d2804379,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Shirt (Blue)", - "GiftDropId": 48, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 48", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 48, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,83522c12-9549-4d74-8c87-bae210bcd2bf,1695608b-e9cc-4a03-b56d-0f09d2804379,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Shirt (Black)", - "GiftDropId": 49, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 49", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 49, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,XNq4Cns4lEGydtktdsXlmQ,1695608b-e9cc-4a03-b56d-0f09d2804379,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Shirt (Navy)", - "GiftDropId": 50, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 50", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 50, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Navy)", - "GiftDropId": 51, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 51", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 51, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Purple)", - "GiftDropId": 52, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 52", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 52, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,faedf215-289b-40f7-90cc-f5b98517d133,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Blue)", - "GiftDropId": 53, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 53", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 53, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,1773d5d8-4714-4721-b30c-97e25d6f2a5a,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Red)", - "GiftDropId": 54, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 54", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 54, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,05K7dmjigkCByO2ufw9jtw,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Green)", - "GiftDropId": 55, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 55", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 55, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yOw1WqEN0EWqR9t53EsQpw,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (White)", - "GiftDropId": 56, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 56", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 56, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,qoVZuGa5NkOmyfikHjDhXw,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Black)", - "GiftDropId": 57, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 57", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 57, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowtie (Blue)", - "GiftDropId": 72, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 72", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 72, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowtie (White)", - "GiftDropId": 73, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 73", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 73, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowtie (Red)", - "GiftDropId": 74, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 74", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 74, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e69372eb-2fd8-4e17-a448-ee0be61a2c7a,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowtie (Black)", - "GiftDropId": 75, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 75", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 75, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e4IDo-fuH0C9YByzcX5k-A,qCIoeLQw-Uq-SKIetIgIpA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Bow Tie (Red)", - "GiftDropId": 77, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 77", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 77, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Blue)", - "GiftDropId": 80, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 80", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 80, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Grey)", - "GiftDropId": 81, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 81", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 81, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Red)", - "GiftDropId": 82, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 82", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 82, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (White)", - "GiftDropId": 83, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 83", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 83, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Yellow)", - "GiftDropId": 84, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 84", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 84, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,ojvIFCTpJkeegestF065wA,10fYSIBytk-yUjveDa407w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Collared Shirt (Plaid)", - "GiftDropId": 93, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 93", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 93, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,071d1bf3-86dc-4a31-b54a-e6579fab8649,d015cae7-a905-49e4-8823-6dec069689a6,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Collared Shirt (Purple)", - "GiftDropId": 95, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 95", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 95, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e139dd9-4757-43a8-8546-8da70dc17f0a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ranger Stache", - "GiftDropId": 105, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 105", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 105, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Orange)", - "GiftDropId": 106, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 106", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 106, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Dots, Red)", - "GiftDropId": 107, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 107", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 107, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Dots, Blue)", - "GiftDropId": 108, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 108", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 108, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Dots, White)", - "GiftDropId": 109, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 109", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 109, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Dots, Green)", - "GiftDropId": 112, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 112", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 112, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Red)", - "GiftDropId": 113, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 113", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 113, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Blue)", - "GiftDropId": 114, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 114", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 114, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, White)", - "GiftDropId": 115, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 115", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 115, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Purple)", - "GiftDropId": 116, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 116", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 116, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Black)\t", - "GiftDropId": 117, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 117", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 117, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Green)", - "GiftDropId": 118, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 118", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 118, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Plaid, Red)", - "GiftDropId": 119, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 119", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 119, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Plaid, Blue)", - "GiftDropId": 120, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 120", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 120, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Plaid, White)", - "GiftDropId": 121, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 121", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 121, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Plaid, Green)", - "GiftDropId": 124, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 124", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 124, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cca7ab3d-5609-4700-92fd-3280fcea9b77,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1002, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Stache", - "GiftDropId": 125, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 125", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 125, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Brown)", - "GiftDropId": 126, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 126", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 126, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,192ba73d-6990-42da-8fe0-914c2a7181eb,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Black, Gold)", - "GiftDropId": 127, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 127", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 127, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Yellow)", - "GiftDropId": 128, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 128", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 128, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,624c85e5-095a-48b6-85fb-c9bbade19a8d,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Cherry)", - "GiftDropId": 129, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 129", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 129, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,K5vPqD3BrEuODRDzFdC6Hw,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Black, Silver)", - "GiftDropId": 131, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 131", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 131, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Red)", - "GiftDropId": 136, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 136", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 136, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,rcdwgNvO30Cvx2ycE1GfHw,JmFzNL5v_0q1p0bgoOlBpQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Black)", - "GiftDropId": 137, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 137", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 137, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9a366f8b-ea5b-49ae-a98c-f6b282e9bf14,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Gold Sequins)", - "GiftDropId": 138, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 138", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 138, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "73a119ab-d2c8-4da9-98b2-29edbb38e2c2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Red Sequins)", - "GiftDropId": 139, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 139", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 139, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "73c0e2ba-cba1-482a-89d5-1508997aceeb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Silver Sequins)", - "GiftDropId": 140, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 140", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 140, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jacket Dress (Red) ", - "GiftDropId": 141, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 141", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 141, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,v_5qFi-vAUSDd1fLNL7pvA,X0_GvGrZGkSP9Ub81CHgqQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jacket Dress (Green)", - "GiftDropId": 142, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 142", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 142, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,y5O8zRJy4kuhnXzATSWKew,X0_GvGrZGkSP9Ub81CHgqQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jacket Dress (Blue)", - "GiftDropId": 143, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 143", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 143, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Primrose)", - "GiftDropId": 144, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 144", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 144, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,IzdUC8x0F02i3BhPfEUOYw,CAqT_iLfQ0qQ-GbIdAsZow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Poppy)", - "GiftDropId": 146, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 146", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 146, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,nPUQvBsxu0mzhQg9YnWEgw,CAqT_iLfQ0qQ-GbIdAsZow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Paradise)", - "GiftDropId": 147, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 147", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 147, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wyKAZSZwT0u9cuSaQ_-IHg,vUgpsaXrO0ak7huhkHqlUA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Begonia)", - "GiftDropId": 148, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 148", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 148, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,_OM7UNZENEejgO5h7H1ztg,vUgpsaXrO0ak7huhkHqlUA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Dahlia)", - "GiftDropId": 149, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 149", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 149, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mermaid Dress", - "GiftDropId": 150, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 150", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 150, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Moons & Stars Dress ", - "GiftDropId": 151, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 151", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 151, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,OJYpuFw810Sg4bTw0XQf-g,NqU5Mw75BE6kPaD8t11Qow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Lodge)", - "GiftDropId": 153, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 153", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 153, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,t4gMAKp4L0WBaTGf_rtqFw,NqU5Mw75BE6kPaD8t11Qow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Yacht)", - "GiftDropId": 154, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 154", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 154, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rGMFdPKmK02_OvIIFYlAxA,NqU5Mw75BE6kPaD8t11Qow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Veranda)", - "GiftDropId": 155, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 155", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 155, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,wxvSDMommkenIl5hTY2fdQ,thwvF0DFRk-mV99ruqYFoQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Seafoam)", - "GiftDropId": 156, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 156", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 156, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,-sqfCQpzpUyjEShEXH9JYQ,thwvF0DFRk-mV99ruqYFoQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Sunrise)", - "GiftDropId": 157, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 157", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 157, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,sz-J7RjesE-ke3bKwumzZQ,mkNzDvyGfEijbdzAxKYrPQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Meadow)", - "GiftDropId": 159, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 159", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 159, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,QlZt51mdn0WuiqKoJaIRyA,mkNzDvyGfEijbdzAxKYrPQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Vineyard)", - "GiftDropId": 160, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 160", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 160, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,6PyJEQxyd0K9TPRnvt_86Q,mkNzDvyGfEijbdzAxKYrPQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Estate)", - "GiftDropId": 161, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 161", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 161, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hero Gal Armor", - "GiftDropId": 162, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 162", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 162, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Dress (Blue)", - "GiftDropId": 163, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 163", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 163, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,GQSpXmD0B02_gwzpq6StFA,ORmS9HkfoUeFuO4RhqcW7g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Dress (Red)", - "GiftDropId": 164, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 164", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 164, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,YvPeCbQS2UOcLjPfoIML_g,ORmS9HkfoUeFuO4RhqcW7g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Dress (Yellow)", - "GiftDropId": 165, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 165", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 165, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,zGOD45zNAk2i6P_zPsNPfg,ORmS9HkfoUeFuO4RhqcW7g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Dress (Green)", - "GiftDropId": 166, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 166", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 166, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wedding Dress", - "GiftDropId": 167, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 167", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 167, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (June Pearl)", - "GiftDropId": 168, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 168", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 168, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,46f7Ewe99E6tF2qFaMtQ0g,8IK1U23XlUOV-2ibVznkDQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (April Diamond)", - "GiftDropId": 170, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 170", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 170, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,R0f3hHGY9UqUEW4aR1fssA,KSqfmVTiGUKOKijwGDSwgQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (May Emerald)", - "GiftDropId": 171, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 171", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 171, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ZsWc8wRafEGl3B7cr6UkzA,ByIfwCtDwU-p9rEfqpjfGg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (August Peridot)", - "GiftDropId": 173, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 173", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 173, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,kQD41xK4dU6dI_6pRkP0qA,aSeusgYlPE6vOBu9Ua_dWA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (September Sapphire)", - "GiftDropId": 174, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 174", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 174, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ro4sD9txVE29_eT2jK-wEg,0YF5bACMsk2sN4tixbJbKw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (October Opal)", - "GiftDropId": 175, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 175", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 175, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,-YsxhNXLAk2qbeXMqwAqng,aNOhXS4nuUeqs0CVw6K7Hg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (November Citrine)", - "GiftDropId": 176, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 176", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 176, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,imOiYzABkUm9C5EVzvjXgg,0eZVIsv7wUyZ0ohLmF1jGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (December Turquoise)", - "GiftDropId": 177, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 177", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 177, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,FgLAEMh1e0GyHO8J8_xj5Q,iM-04HpG6k2N8n-P3XS22w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (January Garnet)", - "GiftDropId": 178, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 178", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 178, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,C9CZUwEZeUiuOue4CK4luA,gUxl7WNXlUqFYHZ9eGq1cg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (February Amethyst)", - "GiftDropId": 179, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 179", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 179, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Goggles (Brown)", - "GiftDropId": 190, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 190", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 190, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,7b82c3c5-fd1f-45ec-b83f-e32668aa8dce,556f876a-70da-4104-b792-fca8ad67be0c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Goggles (Black)", - "GiftDropId": 191, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 191", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 191, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,23428ca9-be75-4146-b400-df01d1dadac9,556f876a-70da-4104-b792-fca8ad67be0c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Goggles (Tan)", - "GiftDropId": 192, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 192", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 192, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,qJGX62O_HUiZWN61NAc1Lg,556f876a-70da-4104-b792-fca8ad67be0c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Goggles (Red)", - "GiftDropId": 193, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 193", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 193, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "_qXaNbm4yEeyalo372QbvA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Biker Goggles", - "GiftDropId": 194, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 194", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 194, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TcgHS_0aPkehrBg7ytMOMQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Clubmaster Glasses", - "GiftDropId": 195, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 195", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 195, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d4f86b2b-0fa3-4264-9eac-cf15b62463bd,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Resistance Shades", - "GiftDropId": 200, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 200", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 200, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mirrored Glasses (Gold)", - "GiftDropId": 201, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 201", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 201, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,f841cdfa-45ba-4f09-a117-503eef34cb4b,9c55b609-b7dc-4070-a3ad-6351a0054a06,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mirrored Glasses (Silver)", - "GiftDropId": 202, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 202", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 202, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d57cf97e-b5d2-4e47-8231-a226a161f6e3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Stunt Shades (Pink)", - "GiftDropId": 204, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 204", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 204, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f684d86f-4a75-4a9a-bc0a-cf58f36c91c5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Stunt Shades (Yellow)", - "GiftDropId": 208, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 208", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 208, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Round Glasses", - "GiftDropId": 211, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 211", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 211, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "02a5b48c-abba-4385-967b-ba900424829e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Monocle", - "GiftDropId": 212, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 212", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 212, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Goggles (Orange)", - "GiftDropId": 217, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 217", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 217, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,DRS8xu3AqUOy2L0RKF3f7g,A7Y52vGIN0ijEKsWR_GQLg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Goggles (Blue)", - "GiftDropId": 218, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 218", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 218, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Goggles (Summit)", - "GiftDropId": 225, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 225", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 225, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,fXNkMWFMV0aXalK_y_8SHw,SSY8ZYMgaE2Bl4oFmMjKQA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Goggles (Chill)", - "GiftDropId": 226, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 226", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 226, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "22pyI3Kz-UullhcebC6DLQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snorkel", - "GiftDropId": 227, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 227", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 227, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snowy Owl Mask", - "GiftDropId": 228, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 228", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 228, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,HWAWBHI3zkGsh06he9CoPg,UAeSz-XeZUaZsk9FNlPX5w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snowy Owl Mask (Raven)", - "GiftDropId": 230, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 230", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 230, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "kghEf_iMKUSxPO-h5iRhSQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Classic Glasses", - "GiftDropId": 231, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 231", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 231, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Goggles", - "GiftDropId": 232, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 232", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 232, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,mZ2ASMrs80axStLp9g1enA,dGzmSibucEe7i1HD7lPcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Goggles (Silver)", - "GiftDropId": 233, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 233", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 233, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cbN5e-t_jEKa4hzir5JAxQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Shades", - "GiftDropId": 234, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 234", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 234, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "767684e7-0eec-4f6e-ad58-3d5ae715206e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Retro Sunglasses", - "GiftDropId": 235, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 235", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 235, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerleader Skirt (Pride)", - "GiftDropId": 236, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 236", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 236, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,eWf2c62cqEOkRukLzhl_wQ,KFq8d1VsO0KDqBWUj4qRFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerleader Skirt (Victory)", - "GiftDropId": 237, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 237", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 237, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Field Hockey Uniform (Red)", - "GiftDropId": 242, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 242", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 242, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,7b0d6661-e856-4ec1-ab90-d89c28a70826,1fede91a-434e-49a5-882e-e6db107112a8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Field Hockey Uniform (Blue)", - "GiftDropId": 243, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 243", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 243, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Firefighter Jacket", - "GiftDropId": 244, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 244", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 244, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Swimsuit (Yellow)", - "GiftDropId": 245, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 245", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 245, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,cf515c87-3c0a-4443-9f63-5ea1bdbaa61a,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Swimsuit (White)", - "GiftDropId": 246, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 246", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 246, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,27680277-aec1-41be-a476-9f51cf775580,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Swimsuit (Purple)", - "GiftDropId": 247, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 247", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 247, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,5a96ac4d-03c3-4214-9dcb-c2044ff28f2e,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Swimsuit (Grey)", - "GiftDropId": 248, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 248", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 248, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (White)", - "GiftDropId": 249, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 249", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 249, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,32dde6dc-e3dc-43ee-9b7c-987bc6778c17,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (Orange)", - "GiftDropId": 250, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 250", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 250, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,88c3ed05-ce41-4a9d-a4a7-8a428d240b3f,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (Black)", - "GiftDropId": 251, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 251", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 251, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,vMqhT19x302aYEo6E9HhOA,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (Red)", - "GiftDropId": 252, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 252", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 252, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,kCqthBeVvUKZA9b76kxuVQ,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (Gray)", - "GiftDropId": 255, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 255", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 255, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fur Coat (Brown)", - "GiftDropId": 257, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 257", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 257, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fur Coat (Black)", - "GiftDropId": 258, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 258", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 258, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,643b5f2d-0666-4869-b699-03742de34d16,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fur Coat (White)", - "GiftDropId": 259, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 259", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 259, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Goggles", - "GiftDropId": 260, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 260", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 260, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Space Visor (Nova)", - "GiftDropId": 271, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 271", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 271, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,SXG9rdEkxkOR31Nk0aTOww,uB4gFxfrh0W5OtkmZdFN1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Space Visor (Quasar)", - "GiftDropId": 272, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 272", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 272, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,FFIpxInE-EKbk2GY-pIkyg,uB4gFxfrh0W5OtkmZdFN1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Space Visor (Nebula)", - "GiftDropId": 273, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 273", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 273, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Square Glasses (Purple)", - "GiftDropId": 281, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 281", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 281, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Square Glasses (Red)", - "GiftDropId": 282, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 282", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 282, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,c5884778-a87f-4612-9717-86fbb65d440f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Square Glasses (Blue)", - "GiftDropId": 283, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 283", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 283, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sunglasses (Black)", - "GiftDropId": 284, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 284", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 284, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,0Ytm7G4_lkmZWPA_YfaIeQ,KfM7veOVlE-dNZmsbDNZBA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sunglasses (Orange)", - "GiftDropId": 286, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 286", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 286, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winner's Medal (Gold)", - "GiftDropId": 287, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 287", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 287, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,ERnUPsyT6kuEnIRZF8zPwg,wzt-5C_LjEmIQWUVPcYWhA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winner's Medal (Silver)", - "GiftDropId": 288, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 288", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 288, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,iaDL2im4lkCXUo0NWM-F3g,wzt-5C_LjEmIQWUVPcYWhA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winner's Medal (Bronze)", - "GiftDropId": 289, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 289", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 289, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d13a7a2-8213-40e6-90a6-efdd76a3fdcb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flowing Hair", - "GiftDropId": 302, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 302", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 302, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "BJ2XrGvl40iIl28IbTfbKg,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Ponytail", - "GiftDropId": 306, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 306", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 306, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fbdca48d-4ae6-41ad-8c33-b70a9e33fd77,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 11, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Action Hair", - "GiftDropId": 312, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 312", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 312, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "49397e16-1027-4286-9bc4-b59eae565ff0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Side Pony Hair", - "GiftDropId": 313, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 313", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 313, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e49d5d78-157e-4bc8-b878-ff7c4963fdc4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mohawk Hair", - "GiftDropId": 320, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 320", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 320, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2b7f4dae-51da-4af0-b009-12d6005c85c6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mullet Hair", - "GiftDropId": 321, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 321", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 321, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76a73866-5b60-424d-b751-a105e030f46e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Prankster Hair ", - "GiftDropId": 327, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 327", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 327, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ce250e13-8137-4f62-9e52-2b1cebe7d0ad,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Hawk Hair", - "GiftDropId": 329, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 329", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 329, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Blue)", - "GiftDropId": 340, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 340", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 340, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,ZpcM5H2Q1UCt0hh82nSu9w,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Pink)", - "GiftDropId": 341, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 341", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 341, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,7B7vpnMTfkGLcMdHCZ_kWA,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Red)", - "GiftDropId": 342, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 342", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 342, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,nO-YacKU1kmLjTFAAqNeYQ,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Yellow)", - "GiftDropId": 343, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 343", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 343, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,76CA_KCr806y1FA35m-YTg,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Orange)", - "GiftDropId": 344, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 344", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 344, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,61VZkFjB402brzWm4UsftA,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Archer Hat (Grey)", - "GiftDropId": 357, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 357", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 357, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Helmet (White)", - "GiftDropId": 361, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 361", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 361, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,JFalLDUvm0aMm3wh1UVfVg,iQjkS1xYP0S63ltvKpkz5g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Helmet (Orange)", - "GiftDropId": 362, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 362", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 362, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Hat (Brown)", - "GiftDropId": 363, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 363", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 363, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,a8de80d3-286a-4fdc-bed2-75d52f8c0964,ff5ae41e-e446-4a96-8c11-49d85556fa81,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Hat (Black)", - "GiftDropId": 364, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 364", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 364, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,c6cf096c-f0cb-4500-80a0-bc2916b5a426,ff5ae41e-e446-4a96-8c11-49d85556fa81,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Hat (Tan)", - "GiftDropId": 365, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 365", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 365, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,FjnZ-D1hcESLOWL4Ukv7kw,ff5ae41e-e446-4a96-8c11-49d85556fa81,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Hat (Red)", - "GiftDropId": 366, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 366", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 366, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Folded Bandana (Red) ", - "GiftDropId": 367, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 367", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 367, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "07023692-97e1-4a65-a881-64ca6b4ae08e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbarian Helm ", - "GiftDropId": 368, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 368", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 368, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Hat (Red)", - "GiftDropId": 369, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 369", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 369, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,631c9015-2a00-47ea-bb35-465a2ddbca5d,83158223-e268-4036-8a6a-218a8430eb2c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Hat (Black)", - "GiftDropId": 370, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 370", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 370, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,7f9cb939-36a4-40da-8337-025e1d7bf8e5,83158223-e268-4036-8a6a-218a8430eb2c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Hat (Green)", - "GiftDropId": 371, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 371", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 371, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Goblins)", - "GiftDropId": 380, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 380", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 380, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Buckaneer)", - "GiftDropId": 381, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 381", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 381, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nZor-clxlkm8EO9Gco0Otg,r_GLekt6mkWxXw8zPPR8Mg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Cap (White, Red, Blue)", - "GiftDropId": 382, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 382", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 382, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,M8IYDK6aTUyn5mRhr51GtA,r_GLekt6mkWxXw8zPPR8Mg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Cap (White, Orange, Black)", - "GiftDropId": 383, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 383", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 383, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,yxWEn-oaYE2YvvnrTVV5WQ,r_GLekt6mkWxXw8zPPR8Mg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Cap (White, Turquoise, Grey)", - "GiftDropId": 384, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 384", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 384, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,XLYLo5qgW0eociGDgQ16PA,r_GLekt6mkWxXw8zPPR8Mg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Cap (White, Yellow, Blue)", - "GiftDropId": 385, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 385", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 385, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,Vk1n941ZgkKrhrL9mh18oA,lxmw7EbzsUuoy0roRy5McQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Minitron)", - "GiftDropId": 386, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 386", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 386, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,mdSSJyipq0KvjDNQ2NyUaw,LQheTa-EvUaAonSyoWNmXg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Holographic)", - "GiftDropId": 387, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 387", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 387, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (High Fashion)", - "GiftDropId": 388, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 388", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 388, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,cpTKHXjj0kulivZCKVQqiA,Mrf17aidXEeCF-fFURUUcQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Hyper Ramen)", - "GiftDropId": 391, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 391", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 391, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Helmet (Blue)", - "GiftDropId": 392, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 392", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 392, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,FVdDQFOMQ06teQm2ANDPng,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Helmet (Green)", - "GiftDropId": 393, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 393", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 393, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,FVdDQFOMQ06teQm2ANDPng,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Helmet (Red)", - "GiftDropId": 394, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 394", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 394, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Black)", - "GiftDropId": 395, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 395", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 395, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,-XSM6ZcSjE-vrWL7jyF4fQ,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Blue)", - "GiftDropId": 396, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 396", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 396, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,RL6HkufaJ0yubTpCGVI9eQ,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Green)", - "GiftDropId": 397, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 397", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 397, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,9tTuREkoQkW0ycqOjWXsiA,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (White)", - "GiftDropId": 398, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 398", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 398, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,MVkY4sU5BkGC4QhweRiyIA,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Orange)", - "GiftDropId": 399, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 399", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 399, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,ux9DQVSRyU-_5GA-t197OA,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Purple)", - "GiftDropId": 400, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 400", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 400, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,t2bByt5oUEG90PMMePCP6A,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Gray)", - "GiftDropId": 401, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 401", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 401, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,m7KXVnULz0iHvKfCFzFoyw,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Pink)", - "GiftDropId": 402, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 402", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 402, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,gT0WA7Y1H0my5uMlteIMMg,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Red)", - "GiftDropId": 403, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 403", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 403, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Tan)", - "GiftDropId": 404, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 404", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 404, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,58YffnGSUU6umcI1i0RvZw,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Purple)", - "GiftDropId": 405, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 405", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 405, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,c24f1DNZjEmqkt-FibKUjQ,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Brown)", - "GiftDropId": 406, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 406", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 406, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,SeVmHtrMS0y7gKCYkHcrOA,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Gray)", - "GiftDropId": 407, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 407", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 407, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,uDcJZClcFkiNdkEEh9IIyA,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Blue)", - "GiftDropId": 408, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 408", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 408, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,Iezz6gCFfkKdVcmPXIhunw,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Orange)", - "GiftDropId": 409, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 409", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 409, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,fLWfBSEO6U6aHrDm3nKFEQ,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Green)", - "GiftDropId": 410, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 410", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 410, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,F5vJzMfNB0Ob6Abjadho7Q,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Pink)", - "GiftDropId": 411, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 411", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 411, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,vbOUaJsGHEaSfQCivNcMWg,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (White)", - "GiftDropId": 412, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 412", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 412, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,wbFPXIg5gUK3QK6YycZexg,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Red)", - "GiftDropId": 413, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 413", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 413, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,_fBrHCkTKUe82QgxCyI-Kw,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Black)", - "GiftDropId": 414, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 414", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 414, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bear Hug Hat (White)", - "GiftDropId": 415, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 415", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 415, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,1919d319-6cce-4500-8766-15fed6a13fa8,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Veil (Gold)", - "GiftDropId": 420, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 420", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 420, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,lBe3yxuE40eBmTrnEHBqQQ,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Veil (Purple)", - "GiftDropId": 421, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 421", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 421, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,oZ8k0Qv3SkG-DkY0_dP7UA,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Veil (Teal)", - "GiftDropId": 422, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 422", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 422, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Blue)", - "GiftDropId": 423, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 423", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 423, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,7_n11PF4-0KqTZ9az23hqg,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Black)", - "GiftDropId": 424, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 424", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 424, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,TKbjEeTWfUyA1u4laoULMg,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Green)", - "GiftDropId": 425, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 425", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 425, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,JShcoWWPz0297HeEUJbDCQ,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Red)", - "GiftDropId": 426, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 426", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 426, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,_psc7WCgOk2JzRQwuFAqNw,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (White)", - "GiftDropId": 427, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 427", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 427, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,WeP_tPjUNUuGojXrVBOAIA,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Purple)", - "GiftDropId": 428, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 428", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 428, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Helmet (Blue)", - "GiftDropId": 429, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 429", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 429, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,83522c12-9549-4d74-8c87-bae210bcd2bf,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Helmet (Black)", - "GiftDropId": 430, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 430", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 430, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Helmet (Orange)", - "GiftDropId": 431, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 431", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 431, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,XNq4Cns4lEGydtktdsXlmQ,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Helmet (Navy)", - "GiftDropId": 432, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 432", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 432, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "VQnoLstCyEGDPy1c38-GvA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Biker Helmet", - "GiftDropId": 433, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 433", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 433, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bog Monster Hood", - "GiftDropId": 434, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 434", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 434, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2fadddc1-babd-4cb3-8f5a-0e7c889c3785,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bounty Hunter Helmet", - "GiftDropId": 436, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 436", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 436, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow (Orange)", - "GiftDropId": 437, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 437", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 437, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,c9589974-c261-485e-b571-cb2f34fb178f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow (Green)", - "GiftDropId": 438, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 438", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 438, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow (Pink)", - "GiftDropId": 439, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 439", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 439, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowler Hat", - "GiftDropId": 441, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 441", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 441, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Helmet (Blue)", - "GiftDropId": 442, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 442", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 442, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Helmet (Red)", - "GiftDropId": 443, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 443", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 443, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,rzUd1IMTKUmW0HeMPSIOBQ,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Helmet (Green)", - "GiftDropId": 444, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 444", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 444, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (Black)", - "GiftDropId": 448, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 448", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 448, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,713781e5-ce47-41c6-a24f-94d42a565e30,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (Brown)", - "GiftDropId": 450, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 450", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 450, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (Grey)", - "GiftDropId": 451, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 451", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 451, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,c1e430c5-fd8d-4032-9e3f-8d87cc8784da,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (White)", - "GiftDropId": 452, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 452", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 452, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (Alley)", - "GiftDropId": 453, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 453", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 453, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Hat (Calico)", - "GiftDropId": 454, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 454", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 454, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,V1M2-FXZSEG782d6D0AhUg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Hat (Burmese)", - "GiftDropId": 455, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 455", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 455, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,wNde5lsob06eQxEH2t-zUw,5KeLrnvaKEWnEiap1xzmjw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Hat (Tabby)", - "GiftDropId": 456, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 456", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 456, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chef Hat (White)", - "GiftDropId": 457, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 457", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 457, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,PR5dh2jf2kqGLO0lXgA69A,-lYK7LhYyEy6wqL1tIE9cg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chef Hat (Black)", - "GiftDropId": 458, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 458", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 458, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chicken Hat", - "GiftDropId": 459, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 459", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 459, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (Pink)", - "GiftDropId": 460, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 460", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 460, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,w9I-I0GWRE-3RgOUMMlHjg,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (Black)", - "GiftDropId": 461, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 461", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 461, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,bmi_S166JEGWhf_7woVL0A,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (Tan)", - "GiftDropId": 462, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 462", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 462, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,dSEiNUAZnUmErO5Vfv51zg,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (Teal)", - "GiftDropId": 463, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 463", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 463, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,jTG-jnKn0k-Etg_-4Gb9gw,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (White)", - "GiftDropId": 464, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 464", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 464, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Hat (Black)", - "GiftDropId": 465, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 465", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 465, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,jwXdjDbEmkOFyKZHT_RYOw,YJGsYfwkik2lp7qWqXyXTw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Hat (Blue)", - "GiftDropId": 466, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 466", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 466, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,LdKaVAveokmp3qRwVBxnFA,YJGsYfwkik2lp7qWqXyXTw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Hat (Green)", - "GiftDropId": 467, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 467", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 467, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Brown)", - "GiftDropId": 469, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 469", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 469, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,624c85e5-095a-48b6-85fb-c9bbade19a8d,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Cherry)", - "GiftDropId": 470, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 470", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 470, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,192ba73d-6990-42da-8fe0-914c2a7181eb,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Black, Gold)", - "GiftDropId": 471, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 471", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 471, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Yellow)", - "GiftDropId": 472, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 472", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 472, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,teVKVbVEsEyqOSuRdqHQzA,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (White)", - "GiftDropId": 473, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 473", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 473, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,K5vPqD3BrEuODRDzFdC6Hw,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Black, Silver)", - "GiftDropId": 474, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 474", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 474, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3ae0eb82-13ce-43a2-bbc2-99a1cdbec63f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Crab Hat", - "GiftDropId": 476, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 476", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 476, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Helmet (Triton)", - "GiftDropId": 477, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 477", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 477, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,Su7kiW24d0KapNns96JoFQ,a3Er_BCApUiPtBaGkSH9LA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Helmet (Kraken)", - "GiftDropId": 478, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 478", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 478, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,CahBzgN3D0y46AQsvGC14A,a3Er_BCApUiPtBaGkSH9LA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Helmet (Leviathan)", - "GiftDropId": 479, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 479", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 479, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4abc2ac4-e60c-49b1-9ac8-4d4751ed78ae,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Dino Hat", - "GiftDropId": 481, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 481", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 481, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a5b747b8-c1a5-4bce-999f-e13dbe77bde6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Disco Ball Hat", - "GiftDropId": 482, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 482", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 482, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5ac25e5a-8c8e-445c-82a4-7272baec1eb5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Doctor's Head Mirror", - "GiftDropId": 483, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 483", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 483, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Hat (Red)", - "GiftDropId": 484, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 484", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 484, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,5a614f97-ef7f-4b70-afff-9ed837a86407,a8a91216-0fcc-461e-a682-95ee82509cce,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Hat (Green)", - "GiftDropId": 485, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 485", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 485, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,b444ed0a-eab5-4bd6-af34-d080de74a149,a8a91216-0fcc-461e-a682-95ee82509cce,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Hat (Orange)", - "GiftDropId": 486, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 486", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 486, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,8053b5e5-0f67-4329-a45d-1ee9fc830820,a8a91216-0fcc-461e-a682-95ee82509cce,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Hat (Yellow)", - "GiftDropId": 487, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 487", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 487, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1003, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Elven Crown", - "GiftDropId": 494, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 494", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 494, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Equestrian Helmet (Black)", - "GiftDropId": 495, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 495", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 495, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,55901f12-d5b5-4fa8-b4c8-e479689ee39d,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Equestrian Helmet (Blue)", - "GiftDropId": 496, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 496", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 496, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,4828b50c-95b6-466a-bb25-514891d78202,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Equestrian Helmet (Grey)", - "GiftDropId": 497, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 497", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 497, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,d6823e01-69f0-4f85-b94a-74894356a2cf,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Equestrian Helmet (Maroon)", - "GiftDropId": 498, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 498", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 498, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "16707919-756d-45ae-95fc-cfb6715b8ae6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Helm", - "GiftDropId": 500, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 500", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 500, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Helmet (White)", - "GiftDropId": 501, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 501", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 501, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,cea53c7f-24a9-4e3b-80b9-fbf95738f973,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Helmet (Orange)", - "GiftDropId": 502, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 502", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 502, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Helmet (Blue)", - "GiftDropId": 503, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 503", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 503, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,8c74ee27-3d56-401b-8a8c-7868a80770e8,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Helmet (Black)", - "GiftDropId": 504, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 504", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 504, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Firefighter Helmet (Red)", - "GiftDropId": 505, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 505", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 505, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,891d902e-3257-4a8c-9001-858046007997,c8ccb85e-52cd-4b3b-aadf-289819067125,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Firefighter Helmet (White)", - "GiftDropId": 506, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 506", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 506, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,4c26d1e7-2382-4478-b9c4-a068ed01a607,c8ccb85e-52cd-4b3b-aadf-289819067125,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Firefighter Helmet (Yellow)", - "GiftDropId": 507, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 507", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 507, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Headband (Silver)", - "GiftDropId": 508, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 508", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 508, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,565c17e0-496d-45bd-a2c3-564e118c06cc,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Headband (Black)", - "GiftDropId": 509, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 509", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 509, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Headband (Gold)", - "GiftDropId": 510, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 510", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 510, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Grey)", - "GiftDropId": 511, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 511", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 511, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Green)", - "GiftDropId": 512, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 512", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 512, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,0ba92db2-690a-44ce-92f4-130e9503b6c1,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Blue)", - "GiftDropId": 513, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 513", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 513, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9aYT6E9sd0OSavlmkhtkGw,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (White)", - "GiftDropId": 514, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 514", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 514, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,H-ypJNyVSka9as7rDFRZ_A,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Red)", - "GiftDropId": 515, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 515", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 515, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,-7uPJmO-wUu3cUhqo0caPg,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Tan)", - "GiftDropId": 516, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 516", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 516, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Headband (Pink)", - "GiftDropId": 517, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 517", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 517, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,c5884778-a87f-4612-9717-86fbb65d440f,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Headband (Blue)", - "GiftDropId": 518, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 518", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 518, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,827a1538-51bb-4fef-99c1-7f1bebd9866c,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Headband (Red)", - "GiftDropId": 519, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 519", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 519, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (White)", - "GiftDropId": 520, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 520", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 520, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,d8d490aa-7088-4163-9305-1441367f490c,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (Orange)", - "GiftDropId": 521, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 521", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 521, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,61ff7a02-50ff-49ea-b95e-c31b95a30c8e,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (Black)", - "GiftDropId": 522, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 522", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 522, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,X24EvVokeUqyDNdqevV2EA,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (Red)", - "GiftDropId": 523, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 523", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 523, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,UfhOpLemQ0ypYh7CIC3W1Q,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (Gray)", - "GiftDropId": 526, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 526", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 526, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fox Ears", - "GiftDropId": 528, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 528", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 528, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cec9cfac-a45b-4edb-b26d-7453cc2bfaf2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Froggy Headband", - "GiftDropId": 530, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 530", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 530, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "66f8f55d-cad4-4afb-93e8-b6bdf04b37b3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Green Sequins)", - "GiftDropId": 538, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 538", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 538, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d3b8bd7b-ca9a-4f5d-b115-3659dc294a03,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Top Hat (Green)", - "GiftDropId": 539, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 539", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 539, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Euf1h1qsZ02evDsyoHYbPQ,PZHohDVX0U2frX13N4KYDQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Helmet (Orange)", - "GiftDropId": 541, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 541", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 541, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,zlqLrGEa8E2WW9ey_szREA,PZHohDVX0U2frX13N4KYDQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Helmet (Pink)", - "GiftDropId": 544, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 544", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 544, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Orange)", - "GiftDropId": 546, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 546", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 546, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,8iZO162KNUiMC8l_z3OC_A,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Purple)", - "GiftDropId": 547, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 547", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 547, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,f_c50saStkaGJuhLjJ9lfA,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Black)", - "GiftDropId": 548, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 548", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 548, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,FUP4iRnoc0ikNmjrFD06lg,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Pink)", - "GiftDropId": 549, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 549", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 549, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,GmS0wKwzVEqdf3NoTMHG5A,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Teal, Polka Dot)", - "GiftDropId": 550, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 550", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 550, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,ZNKGkou_gU-1cxBFy7pDKw,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Red, Polka Dot)", - "GiftDropId": 551, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 551", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 551, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,-Iqmonry4EKoqAULCKzRPA,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (White, Polka Dot)", - "GiftDropId": 552, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 552", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 552, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Black)", - "GiftDropId": 572, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 572", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 572, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,viL4CPch2ECwG-RNaWcyZw,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Red)", - "GiftDropId": 573, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 573", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 573, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,8ANbOhNnO0yLQOCIBsDwfg,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Blue)", - "GiftDropId": 574, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 574", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 574, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,JWBK5v78Y0uRVEXlD-Qk6Q,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Orange)", - "GiftDropId": 576, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 576", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 576, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,hf0gkFVS8ESvceRsC3LAXQ,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Psy)", - "GiftDropId": 578, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 578", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 578, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,4scG_UBlzE-5DWRhSrtm6g,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Chillout)", - "GiftDropId": 579, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 579", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 579, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,nX7krD8e2km_ZlOLWcoxdQ,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Lounge)", - "GiftDropId": 581, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 581", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 581, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,ns5tIRishUOp-nYqLedcwA,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Techno)", - "GiftDropId": 582, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 582", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 582, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,I1J-xY4YNU2dB_od4P_7Dg,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Neon Heat)", - "GiftDropId": 584, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 584", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 584, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,2sf-FU4WckGBDWUkVz4z1g,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Neon Sky)", - "GiftDropId": 585, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 585", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 585, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,d9mwowRelE2lDKEA0UQMZQ,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Neon Dawn)", - "GiftDropId": 587, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 587", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 587, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Neon Void)", - "GiftDropId": 588, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 588", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 588, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Hair Clip (Red)", - "GiftDropId": 591, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 591", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 591, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,ce465d53-3807-423f-baa0-bdba2a75ceb3,65b89eae-347e-4eff-9ff3-7f25cace0125,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Hair Clip (White)", - "GiftDropId": 592, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 592", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 592, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,596097a8-d545-4256-959d-1d3cd96fc64c,65b89eae-347e-4eff-9ff3-7f25cace0125,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Hair Clip (Yellow)", - "GiftDropId": 593, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 593", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 593, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hockey Helmet (Black)", - "GiftDropId": 595, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 595", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 595, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,d5efaf80-7f34-4c9a-bc3a-b80b1ac70ace,7c4d447c-6594-4bd8-9510-12ad683ab116,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hockey Helmet (Red)", - "GiftDropId": 596, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 596", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 596, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7c4d447c-6594-4bd8-9510-12ad683ab116,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hockey Helmet (Blue)", - "GiftDropId": 597, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 597", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 597, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,qdA34j6p_UqphqChTCHEYQ,7c4d447c-6594-4bd8-9510-12ad683ab116,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hockey Helmet (Green)", - "GiftDropId": 598, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 598", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 598, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Hat (Mastermind)", - "GiftDropId": 600, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 600", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 600, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,RBRFHN8_rkuImbyDAfcHWw,BOB_mAXdA0u2khOH5qjqXQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Hat (Spy)", - "GiftDropId": 601, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 601", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 601, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,QJSPgq2KXEOWNynY8uqQvA,BOB_mAXdA0u2khOH5qjqXQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Hat (Rogue)", - "GiftDropId": 602, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 602", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 602, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,4RH8_Z1mqU-JIVvx31wOsA,BOB_mAXdA0u2khOH5qjqXQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Hat (Outlaw)", - "GiftDropId": 603, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 603", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 603, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,PMa9370LPEig_7pKwCceEQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Knight Helmet (Green)", - "GiftDropId": 614, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 614", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 614, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lacrosse Helmet (Purple)", - "GiftDropId": 615, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 615", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 615, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,e3454bc7-c88d-4958-8b81-db3fe5472a1e,7e688b30-ed13-4790-9ad8-c49885d1b7e8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lacrosse Helmet (Pink)", - "GiftDropId": 616, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 616", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 616, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (Black)", - "GiftDropId": 622, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 622", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 622, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,z-yaXP9ImkysLOGuCQiblw,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (Red)", - "GiftDropId": 623, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 623", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 623, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,SmRcrycMZ0qYNsHuQQOORA,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (Blue)", - "GiftDropId": 624, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 624", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 624, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,0svDrGn2NkmhUjC1VJUgRg,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (Green)", - "GiftDropId": 625, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 625", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 625, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,Aq4fjEW5gEyzetXMoG2tdQ,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (White)", - "GiftDropId": 626, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 626", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 626, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Primrose)", - "GiftDropId": 627, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 627", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 627, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,B9DJPqTeYUuPnPHRbKzEJA,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Poppy)", - "GiftDropId": 629, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 629", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 629, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,yXZO-donI0SHB9-TT0jUdw,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Paradise)", - "GiftDropId": 630, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 630", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 630, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,J5VsmblfWU2MeUjNo0fz1Q,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Begonia)", - "GiftDropId": 631, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 631", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 631, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,Asfe0ZRi50eryD5wlJzgzA,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Dahlia)", - "GiftDropId": 632, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 632", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 632, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Green)", - "GiftDropId": 633, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 633", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 633, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,916384ca-e209-42a0-bd64-c64f5a40b56f,96b36c98-cba1-4337-91dd-c74c00316f97,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Red)", - "GiftDropId": 634, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 634", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 634, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,96b36c98-cba1-4337-91dd-c74c00316f97,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Blue)", - "GiftDropId": 635, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 635", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 635, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,RA7cizxxYE6J8yV_0XwPxA,VSLcLM0TJU2kJU5gS4KZGw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Pouncing Tiger)", - "GiftDropId": 636, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 636", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 636, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,5_UnQ7vZ9E2T-EhJ7M-mQw,jL-LAsd03EeN1J-Zp8opew,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Green Lightning)", - "GiftDropId": 637, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 637", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 637, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "17f275d7-c5b1-4a0c-857f-8fb7a5d7c57a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Apocalypse Helmet", - "GiftDropId": 641, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 641", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 641, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Fuchsia)", - "GiftDropId": 642, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 642", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 642, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,lhfOKGDAgEKWucerCmH7Fg,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Teal)", - "GiftDropId": 643, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 643", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 643, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,kLv_wsbbGUmlfIUO1QLYLw,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Green)", - "GiftDropId": 644, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 644", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 644, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,f0pjsV0XMUWoE_z2kqOlSA,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Orange)", - "GiftDropId": 645, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 645", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 645, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,EDLxuGjEVEGdOPXDqyN-xA,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Red)", - "GiftDropId": 646, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 646", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 646, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mermaid Crown", - "GiftDropId": 647, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 647", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 647, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (Black)", - "GiftDropId": 648, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 648", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 648, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,40283127-2ffc-4989-82f6-29c3381bf9e2,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (White)", - "GiftDropId": 649, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 649", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 649, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,1421caa9-9a0d-42c2-b847-1500ba2e483a,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (Brown)", - "GiftDropId": 650, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 650", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 650, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,390a476a-5545-48eb-955c-1bf1a16012bf,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (Grey)", - "GiftDropId": 651, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 651", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 651, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,PZx7Iae0pkiDaxT9t3-vgg,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (Purple)", - "GiftDropId": 653, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 653", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 653, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Party Hat (Shindig)", - "GiftDropId": 656, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 656", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 656, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,RROvzwtshUGyRudVIBn8bw,MrrsmY0J0EKduH-f5wUj6g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Party Hat (Celebration)", - "GiftDropId": 658, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 658", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 658, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nightcap (Zonked)", - "GiftDropId": 660, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 660", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 660, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,2vawoQvJPUegnClmr2RNAQ,RR69IGV4j0Sd2xtmyN5wFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nightcap (Zzz)", - "GiftDropId": 661, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 661", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 661, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,kIcd-yEnsEqxoeogquvmRw,RR69IGV4j0Sd2xtmyN5wFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nightcap (Dozy)", - "GiftDropId": 662, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 662", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 662, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,qHyKfCsrbUqSWomjLXf7Hw,RR69IGV4j0Sd2xtmyN5wFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nightcap (Sandman)", - "GiftDropId": 663, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 663", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 663, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Regal Crown (Gold)", - "GiftDropId": 674, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 674", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 674, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zljmtj5WqUaRvB3XQTgJXg,XFuSiGupZ02Fut1Dxum_Iw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Regal Crown (White)", - "GiftDropId": 675, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 675", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 675, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rmq1AOQvtUGOHvbPUximwg,XFuSiGupZ02Fut1Dxum_Iw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Regal Crown (Black)", - "GiftDropId": 676, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 676", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 676, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rain Hat (Yellow)", - "GiftDropId": 678, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 678", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 678, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,v3af60p1Q02NpdCqIRO9lw,1hVOI7IuY0mKvtr2PZXLww,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rain Hat (Red)", - "GiftDropId": 679, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 679", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 679, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,d0bb468c-b78f-4e80-916d-65fec3ec0010,0272eb19-fc0e-4ad6-8db9-cc0cda2528b0,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ranger Hat (Green)", - "GiftDropId": 682, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 682", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 682, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f61eb9cc-c0d3-4b45-a7b7-b6c69e5e6db4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Red Panda Hat", - "GiftDropId": 683, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 683", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 683, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,W-xMu8n2CUuHSXfHvEL4yw,-apO3Y7om0GKhC4V_hVYdQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1003, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Robo Logo Cap (Pink)", - "GiftDropId": 685, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 685", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 685, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Crown (Gold)", - "GiftDropId": 686, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 686", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 686, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,wCe2yC2U1kyYvPd8Z1rX2w,hCeaYHy1TE2s6rTPxAQP9A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Crown (White)", - "GiftDropId": 688, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 688", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 688, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,QkfA71-1z0qOiZAVrbzhtA,hCeaYHy1TE2s6rTPxAQP9A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Crown (Black)", - "GiftDropId": 689, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 689", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 689, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Hat (Tan)", - "GiftDropId": 690, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 690", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 690, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,0dabda0d-842c-4d39-a6b9-a8ca3ec20825,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Hat (Green)", - "GiftDropId": 691, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 691", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 691, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "380a5e35-b4d0-4119-9721-8ce4c0840fbd,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Starship Helm", - "GiftDropId": 698, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 698", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 698, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (White, Blue, Gold)", - "GiftDropId": 703, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 703", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 703, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,f5403c89-9769-479b-8a05-c71607f9b189,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (White, Black, Gold)", - "GiftDropId": 704, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 704", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 704, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,36e63797-5a42-4779-a5cc-ef5c2e7d17d4,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (White, Black, Silver)", - "GiftDropId": 705, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 705", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 705, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,70112887-dc8d-49d5-96ed-0845204e0b58,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (Black, Black, Gold)", - "GiftDropId": 706, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 706", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 706, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,2738ab5f-8c94-46b3-bac6-4a8111c41c21,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (Pink, Black, Pink)", - "GiftDropId": 707, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 707", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 707, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shark Hat", - "GiftDropId": 710, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": "Doo doo doo doo doo doo Debug: 710", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 710, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Cap (Tan)", - "GiftDropId": 711, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 711", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 711, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,fEPwvuJCWkGBe4IekXpmLw,axPBGoqorEe77Oqqjfzb5w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Cap (Black)", - "GiftDropId": 712, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 712", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 712, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,MQOxmUk-mUG-Ee9m9nX31Q,axPBGoqorEe77Oqqjfzb5w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Cap (Grey)", - "GiftDropId": 713, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 713", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 713, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Ear Muffs (Summit)", - "GiftDropId": 714, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 714", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 714, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,KwCEye0nsESFs-yj4h9sjQ,c_t9XDbn-Eqml1O-wC5zJQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Ear Muffs (Chill)", - "GiftDropId": 715, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 715", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 715, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Small Brim Hat (Purple)", - "GiftDropId": 716, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 716", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 716, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,67fc9269-8dd8-4d6f-b594-c77e716f2482,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Small Brim Hat (Green)", - "GiftDropId": 717, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 717", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 717, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Small Brim Hat (Black)", - "GiftDropId": 718, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 718", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 718, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,d6823e01-69f0-4f85-b94a-74894356a2cf,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Small Brim Hat (Maroon)", - "GiftDropId": 719, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 719", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 719, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Hat (Red)", - "GiftDropId": 720, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 720", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 720, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,XFCpIdeDXUqeYCIgh4fGtg,sV_ByCug30G1Gw-77KUe1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Hat (Blue)", - "GiftDropId": 721, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 721", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 721, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,oKxmH-1s2EyIDkZoOQSQQw,sV_ByCug30G1Gw-77KUe1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Hat (Green)", - "GiftDropId": 722, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 722", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 722, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,MxnAq_XOw0uTzQ8IIxqb_Q,sV_ByCug30G1Gw-77KUe1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Hat (Yellow)", - "GiftDropId": 723, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 723", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 723, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Hat", - "GiftDropId": 733, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 733", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 733, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,YSnoHFmJDUa_XCK6JMMh2g,VZyHWGKNJEGSxDT2GO3ebA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Hat (Grey)", - "GiftDropId": 735, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 735", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 735, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Squid Hat", - "GiftDropId": 736, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 736", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 736, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34f45c5b-fea7-40b4-add7-bc7a37000ab5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Star Captain Hat ", - "GiftDropId": 737, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 737", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 737, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Topper", - "GiftDropId": 738, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 738", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 738, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,Jy2TN1KBTEeoVehy_x32Ng,fXnd_COSzUeznwe7P4ZYRg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Topper (Silver)", - "GiftDropId": 740, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 740", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 740, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Hat", - "GiftDropId": 741, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 741", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 741, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,ZUMIXcyOpEGiHgslbHQbwA,Uhw5NBQy-EOIiCWiZFiL7g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Hat (Silver)", - "GiftDropId": 743, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 743", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 743, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sun Hat", - "GiftDropId": 744, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 744", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 744, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hero Crown", - "GiftDropId": 745, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 745", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 745, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "00f0b914-aa22-4d14-9af1-996e1af61f4d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tiny Crown", - "GiftDropId": 746, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 746", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 746, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Top Hat (Black, Red)", - "GiftDropId": 747, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 747", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 747, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,DzgN67HoikexE2rTlZLdYQ,vm1ESK9ls0SaxSwHplNALQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Top Hat (White)", - "GiftDropId": 749, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 749", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 749, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,xeK_acj2hE-sYGhsMRwjhw,HwhHShudGkGjXagJxCN2uA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Top Hat (Patchwork)", - "GiftDropId": 750, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 750", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 750, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Hat", - "GiftDropId": 753, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 753", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 753, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,LEUQnDz-k0m-hY-AX3Z9Sg,znNiHfNdTE-szOIAnIWFQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Paradise)", - "GiftDropId": 755, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 755", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 755, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,cSFt9MWLj06CDzIzATqrTg,znNiHfNdTE-szOIAnIWFQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Poppy)", - "GiftDropId": 756, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 756", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 756, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,B6qNcZQ770eJel13RskuIg,sIP83lqv3kG31TH5Rw4gqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Begonia)", - "GiftDropId": 757, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 757", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 757, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,p3g8YAOhTUKAiE-Wh-X-aA,sIP83lqv3kG31TH5Rw4gqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Dahlia)", - "GiftDropId": 758, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 758", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 758, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,SqHAYcqBXU2PtF2urWGruQ,sIP83lqv3kG31TH5Rw4gqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Primrose)", - "GiftDropId": 759, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 759", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 759, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Pu_1I6Zq-0G1HBMHa5MrKg,Cjy-bE0PikWLCRrL4U2NGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tourist Hat (Green)", - "GiftDropId": 760, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 760", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 760, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,aiBfwCNwpUyJ0rYKCMa7qw,Cjy-bE0PikWLCRrL4U2NGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Hat (Yellow)", - "GiftDropId": 762, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 762", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 762, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Hat (Brown)", - "GiftDropId": 763, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 763", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 763, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,CoSVCyrI-0qg-EkqB2R0hg,JO9lJOQSREWbPyDBZH_cyg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Hat (Black)", - "GiftDropId": 764, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 764", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 764, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Hat (Pickup)", - "GiftDropId": 765, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 765", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 765, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,lDXambcP60CeY2C8qeGDFw,uiAwVt3HK0mRVtWp9B-gTg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Hat (Flatbed)", - "GiftDropId": 766, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 766", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 766, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Unicorn Horn (Spirit)", - "GiftDropId": 774, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 774", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 774, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,FNe9LkWJMUeC3frYJMyEaQ,nW_fBsuZA0OfIjTMXm6ZCA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Unicorn Horn (Harmony)", - "GiftDropId": 775, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 775", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 775, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,mudt-Z5-5USdnIq-xaDgOw,nW_fBsuZA0OfIjTMXm6ZCA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Unicorn Horn (Joy)", - "GiftDropId": 776, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 776", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 776, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c87239ca-a255-4b13-bbc5-1b38236fb4cc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Viking Helmet", - "GiftDropId": 777, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 777", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 777, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Visor", - "GiftDropId": 778, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 778", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 778, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Headphones", - "GiftDropId": 780, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 780", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 780, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,tXhgU1o_wkaNQ-7P3KXidQ,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Hat (Kingfisher)", - "GiftDropId": 789, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 789", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 789, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,nn86ATWxekWdIGlPePPgGQ,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Hat (Vintage)", - "GiftDropId": 790, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 790", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 790, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,oxi26T5a4U6L73pF-Pgrhg,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Hat (Grackle)", - "GiftDropId": 792, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 792", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 792, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,6547pqf6vUm2L89AG6D91A,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Hat (Raven)", - "GiftDropId": 793, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 793", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 793, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,aBQ3R9boek-mYeSYSNvDbQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Witch Hunter Hat (Blue)", - "GiftDropId": 809, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 809", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 809, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3KmqVuMQkCYK6sVTMOTOA,abdf525b-b871-41be-a1c8-810f49740ad4,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wizard Hat (Purple)", - "GiftDropId": 816, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 816", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 816, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jazzercise Shirt (Teal)", - "GiftDropId": 822, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 822", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 822, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,3b2cfc85-4e2a-4e0d-b738-c296ae8692f8,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jazzercise Shirt (Pink)", - "GiftDropId": 823, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 823", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 823, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,78eb0969-f246-4cac-acd6-295df7c092e4,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jazzercise Shirt (White)", - "GiftDropId": 824, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 824", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 824, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,PMa9370LPEig_7pKwCceEQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Knight Cape (Green)", - "GiftDropId": 832, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 832", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 832, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Red)", - "GiftDropId": 837, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 837", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 837, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,_VfdBTi7PU276qzsYKayow,qSsEcadcm0-twR1TvVcgYQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Pouncing Tiger)", - "GiftDropId": 838, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 838", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 838, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Dtis2HpVzkelZb6M9mW5TQ,iqGv6iRJ-UGbofv8-aHKVA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Green Lightning)", - "GiftDropId": 839, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 839", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 839, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,xNjX_6-aREm0cYZObVLiAg,OE-PtL0-0kWcJPwn1wvuVg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Blue)", - "GiftDropId": 840, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 840", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 840, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Kcyp8sv0202Puym1Wf86xg,OE-PtL0-0kWcJPwn1wvuVg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Green)", - "GiftDropId": 841, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 841", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 841, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Green)", - "GiftDropId": 843, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 843", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 843, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,916384ca-e209-42a0-bd64-c64f5a40b56f,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Red)", - "GiftDropId": 844, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 844", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 844, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Blue)", - "GiftDropId": 845, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 845", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 845, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,TLrw3oncCE2MeuVifXSWTg,-_ViYCHHRUip7oN_AnH0Og,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Pouncing Tiger)", - "GiftDropId": 846, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 846", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 846, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,7Jx8mrxoi0aQtZEb03CdRA,-IgxYllxkEyr7V1gosWXUA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Green Lightning)", - "GiftDropId": 847, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 847", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 847, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerleader Sweater (Pride)", - "GiftDropId": 848, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 848", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 848, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,6secgNPvmUyFnI3NC5dIYw,5V_1JEDrRUa1UPKhtrSB2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerleader Sweater (Victory)", - "GiftDropId": 849, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 849", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 849, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7553d851-1986-4325-870d-e425dfb7d007,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Farmer Beard", - "GiftDropId": 892, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 892", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 892, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6b337a35-95d9-4b3a-9891-d9fbb06262aa,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Curly Mustache", - "GiftDropId": 894, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 894", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 894, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cfe276b9-1bdf-4c41-9e86-1a0215c6c5a1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ascot", - "GiftDropId": 898, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 898", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 898, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Backsword (Leathered Iron)", - "GiftDropId": 899, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 899", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 899, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,LIgagNf4gk68EYQdlDruxg,rL9p5JY83Eyxj00Dieg7oA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basic Belt (Red)", - "GiftDropId": 901, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": " Debug: 901", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 901, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,6fmUy748hU2dgwgaijSkUA,rL9p5JY83Eyxj00Dieg7oA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basic Belt (Green)", - "GiftDropId": 904, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": " Debug: 904", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 904, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,buuNFd8sK0eap78TL1gMNQ,-UFHTNvJs0CGDStb0PFkbQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basic Belt (Blue)", - "GiftDropId": 905, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": " Debug: 905", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 905, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,SDbpnjVYmEGQneK5fhZ0Cw,FwjsTo0nb0uNU6l8XvllNA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Leather Necklace (Red)", - "GiftDropId": 907, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 907", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 907, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,uwoWPY4YjEmZSQcNCrx1Gg,FwjsTo0nb0uNU6l8XvllNA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Leather Necklace (Green)", - "GiftDropId": 910, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 910", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 910, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,COZbkLDc20mdUlWSkqMX-w,FwjsTo0nb0uNU6l8XvllNA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Leather Necklace (Blue)", - "GiftDropId": 911, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 911", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 911, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bounty Hunter Cape", - "GiftDropId": 916, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 916", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 916, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow Tie (Gold Sequins)", - "GiftDropId": 917, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 917", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 917, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,Wm30oV5BtEuFQZFk3dPK_w,0R3Mh96tS0631EZYs03dmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow Tie (Red Sequins)", - "GiftDropId": 918, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 918", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 918, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "988e4069-4341-428b-bbf5-023309891385,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow Tie (Silver Sequins)", - "GiftDropId": 919, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 919", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 919, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Butterfly Wings (Cool Mint)", - "GiftDropId": 920, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 920", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 920, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Butterfly Wings (Monarch)", - "GiftDropId": 922, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 922", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 922, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "27c2eb7f-9fac-4c42-90c7-44e7a33d5303,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Butterfly Wings (The Blue One)", - "GiftDropId": 926, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 926", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 926, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Tank (Triton)", - "GiftDropId": 927, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 927", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 927, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,Su7kiW24d0KapNns96JoFQ,ZpyoWbO6GkGglXlMuYUARw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Tank (Kraken)", - "GiftDropId": 928, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 928", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 928, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,CahBzgN3D0y46AQsvGC14A,ZpyoWbO6GkGglXlMuYUARw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Tank (Leviathan)", - "GiftDropId": 929, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 929", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 929, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "587ca2bb-dd42-42bf-833f-4e2a97349866,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Doctor's Stethoscope", - "GiftDropId": 931, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 931", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 931, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Dragon Wings ", - "GiftDropId": 934, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 934", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 934, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Elven Cape", - "GiftDropId": 936, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 936", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 936, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fancy Cape (Grey)", - "GiftDropId": 937, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 937", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 937, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,crl8VlZ59kGxG01noGEWmA,EckOEU0mJkGIVDvYoKBN9g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fancy Cape (Gilded)", - "GiftDropId": 938, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 938", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 938, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fanny Pack", - "GiftDropId": 939, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 939", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 939, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Felted Shawl", - "GiftDropId": 941, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 941", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 941, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "86af3a97-18d8-4dda-a2f2-cfd3b4224254,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow Tie (Green Sequins)", - "GiftDropId": 945, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 945", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 945, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Apron (Tan)", - "GiftDropId": 946, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 946", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 946, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,eV3Nv6SWS0yl3f-fgjPb-w,t-ZEWJCgFEyGP2PjNblQMA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Apron (Denim)", - "GiftDropId": 947, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 947", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 947, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,Lxx3q6JRnUW_cPG_kGG4ag,t-ZEWJCgFEyGP2PjNblQMA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Apron (White)", - "GiftDropId": 948, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 948", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 948, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,vek37vRROUKnSJKVP0CH6w,t-ZEWJCgFEyGP2PjNblQMA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Apron (Charcoal)", - "GiftDropId": 949, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 949", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 949, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "affdc9ad-8312-4421-8f56-e35dfdaeb63a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lifeguard Whistle", - "GiftDropId": 953, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 953", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 953, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e307eca-0850-4d85-8cc1-f5c176bfa7e9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Apocalypse Scarf", - "GiftDropId": 954, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 954", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 954, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Fuchsia)", - "GiftDropId": 955, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 955", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 955, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,Ot9EG-FfKEauT0u6pSZuWg,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Teal)", - "GiftDropId": 956, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 956", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 956, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,i3rD_hnQG0a-5f6Ve4AfWg,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Pink)", - "GiftDropId": 957, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 957", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 957, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,S9uymuvraUCOM8gmB7bnEA,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Dark Blue)", - "GiftDropId": 958, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 958", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 958, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,_uh3kj6hKUyBKOSR3R8dog,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Purple)", - "GiftDropId": 959, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 959", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 959, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,kaRBW1u3dkODGjPMePW6Uw,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Rose)", - "GiftDropId": 960, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 960", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 960, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shell Necklace", - "GiftDropId": 964, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 964", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 964, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e9bbda6-d681-42b1-9cc4-5758acf34bc0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Necklace (Gold)", - "GiftDropId": 965, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 965", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 965, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b95678aa-351a-4929-8a0e-0274a183eb18,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Necklace (Silver)", - "GiftDropId": 966, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 966", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 966, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Pearl Necklace (Freshwater)", - "GiftDropId": 968, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 968", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 968, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,sqPMH0LhLkeG-4XkxpU-sw,URWHffwjGUKgXeV01upePA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Pearl Necklace (Saltwater)", - "GiftDropId": 969, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 969", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 969, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4c673a35-c10f-4a8c-b8e0-96a50fe5b97f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Pegasus Wings", - "GiftDropId": 970, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 970", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 970, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Red)", - "GiftDropId": 979, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 979", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 979, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,mqdncbYcuUSGFvFqEU0z4A,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Purple)", - "GiftDropId": 981, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 981", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 981, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,MbusQ9bte0i9zirlxtNkSQ,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Blue)", - "GiftDropId": 982, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 982", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 982, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,_9QlnTPXuEO5OQ3H0CwFkA,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Green)", - "GiftDropId": 983, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 983", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 983, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,cKLBS6pbf0SFuavWyeZ7GA,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Black)", - "GiftDropId": 984, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 984", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 984, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,DZyW-gOG9U-QLGOMFBhOoA,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Pink)", - "GiftDropId": 985, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 985", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 985, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f47f81e7-fcdd-4687-9b99-013147bef30f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Belt Sash", - "GiftDropId": 987, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 987", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 987, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Tank (Orange)", - "GiftDropId": 995, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 995", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 995, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,V_duN2oWaUmmao1xHhzCJA,Uvarm_CwTUWWQYZvzI8OaQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Tank (Blue)", - "GiftDropId": 996, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 996", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 996, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snowy Owl Cape", - "GiftDropId": 999, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 999", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 999, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,8M72ydR_uUSsli43PH2Eyw,wQxO4xmXCUGeC9ZHfDNGTw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snowy Owl Cape (Raven)", - "GiftDropId": 1001, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1001", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1001, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Poncho", - "GiftDropId": 1002, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1002", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1002, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,EmTrJKm8cUy8_BHAvP8Meg,kxkqq5UA_kCM6lFsFe3dvw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Poncho (Grey)", - "GiftDropId": 1004, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1004", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1004, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Pauldron", - "GiftDropId": 1006, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1006", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1006, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,rSzG7s1ocUmx9_VrJLOcHQ,ISycihytUUyoypVb-kXN_Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Pauldron (Silver)", - "GiftDropId": 1007, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1007", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1007, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Satchel", - "GiftDropId": 1008, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1008", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1008, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,bH3dgwnwt0KEw8oCDVIcEQ,erPtGSgq_kmqfeSlZWw4VA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Satchel (Silver)", - "GiftDropId": 1009, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1009", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1009, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Gold Sequins)", - "GiftDropId": 1011, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1011", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1011, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,Wm30oV5BtEuFQZFk3dPK_w,tfiSfpRez0y_R4QjAhO0bQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Red Sequins)", - "GiftDropId": 1012, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1012", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1012, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0d4e7ebe-efd9-4e68-9900-5645916e7596,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Silver Sequins)", - "GiftDropId": 1013, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1013", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1013, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Bandolier (Brown)", - "GiftDropId": 1014, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1014", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1014, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,YTlnBuEjhUG1hSfAs8qwuw,IcR9Z_MxKkS9uh4uFYuFzQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Bandolier (Black)", - "GiftDropId": 1015, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1015", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1015, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Belt (Brown)", - "GiftDropId": 1016, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1016", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1016, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,lAjUeUtTLU2-3bG2OXBukg,LFB_YqTym0-tQmUIj-YcYA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Belt (Black)", - "GiftDropId": 1017, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1017", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1017, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winter Cloak (Nightwatch)", - "GiftDropId": 1036, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1036", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1036, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,pXrZhtzjV02_qvIQoWEFWA,Hj8WnsdidE6rJeNyOmWUfg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winter Cloak (Hearthstone)", - "GiftDropId": 1037, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1037", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1037, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9231a9c6-7638-4fe9-bd2f-eac6c943009b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Championship Wrestling Belt", - "GiftDropId": 1040, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1040", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1040, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Vest (Black)", - "GiftDropId": 1045, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1045", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1045, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,178c6beb-c737-434c-a53b-d14f438f6a98,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Vest (Blue)", - "GiftDropId": 1046, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1046", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1046, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,2913bd93-bf35-4bdf-b83a-d40a10213adc,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Vest (Red)", - "GiftDropId": 1047, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1047", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1047, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Purple)", - "GiftDropId": 1053, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1053", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1053, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,b42d903b-b393-4f49-af5e-38d0fb6c42b0,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Blue)", - "GiftDropId": 1054, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1054", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1054, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,8cab8cc6-9a2d-434c-8b72-e66edbdd223c,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Black)", - "GiftDropId": 1055, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1055", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1055, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,657f28d5-672a-4f27-86c6-3cb00f25bb84,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Red)", - "GiftDropId": 1056, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1056", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1056, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,w_aK2K9bHEeU6oSQ7BK0qg,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Green)", - "GiftDropId": 1057, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1057", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1057, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Red)", - "GiftDropId": 1058, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1058", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1058, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,5b58d879-2bc4-47ed-a996-1af2ace16425,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Green)", - "GiftDropId": 1059, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1059", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1059, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d320ad9b-ba5c-45ea-b2b8-0d3e409a9db1,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Black)", - "GiftDropId": 1060, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1060", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1060, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d61711fd-589a-4669-b991-9408a58fffd9,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Cream)", - "GiftDropId": 1061, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1061", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1061, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,oJFfs62tR0WVRry2Smt8yA,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Light Blue)", - "GiftDropId": 1062, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1062", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1062, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,MIfCkcrFOEasJqfDmxThdw,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Purple)", - "GiftDropId": 1063, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1063", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1063, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flowered Dress (Red)", - "GiftDropId": 1064, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1064", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1064, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,1acb1f56-4509-449f-9c6a-065bdeaa9ee3,2d7361d2-31a2-404b-90da-10e89114e1f2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flowered Dress (Grey)", - "GiftDropId": 1065, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1065", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1065, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,e98c3f98-7844-4d6e-a21c-05027033c18c,2d7361d2-31a2-404b-90da-10e89114e1f2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flowered Dress (Yellow)", - "GiftDropId": 1066, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1066", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1066, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c161dc73-6ce3-49c4-8d15-45e6911f84e4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sea Captain Beard", - "GiftDropId": 1067, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1067", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1067, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Blue, White, Red)", - "GiftDropId": 1068, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1068", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1068, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b9f51861-ad10-4878-a9b1-d849bccf532a,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, White, Red)", - "GiftDropId": 1069, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1069", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1069, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b5d62931-e756-4a8a-8f3b-760beba49319,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, White)", - "GiftDropId": 1070, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1070", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1070, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,6145292a-9002-41c6-8cd5-43679b6f542f,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, White, Grey)", - "GiftDropId": 1071, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1071", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1071, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,7c1aaa7e-503b-46ef-b1c5-0c61a75b916e,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, White, Blue)", - "GiftDropId": 1072, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1072", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1072, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,27af51bc-8226-4911-8d47-22d28ea8e378,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Blue, White, Blue)", - "GiftDropId": 1073, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1073", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1073, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,857fdcd8-704f-43d0-92b9-bca26619b153,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Blue, White)", - "GiftDropId": 1074, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1074", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1074, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,3df5d13b-ba77-4b51-90b2-7a946e4d0be7,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, Blue)", - "GiftDropId": 1075, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1075", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1075, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (Black)", - "GiftDropId": 1077, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1077", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1077, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,BLgkgLeS-EyazgPQxGcavg,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (White)", - "GiftDropId": 1078, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1078", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1078, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,eb3SmJTIh0628LrZUkI4KQ,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (Pink)", - "GiftDropId": 1080, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1080", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1080, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,Yr0mF1EWzEaIyRMOWFiY6w,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (Red)", - "GiftDropId": 1081, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1081", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1081, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,QzjakcO8tUaPeiI5KBLKtg,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (Blue)", - "GiftDropId": 1082, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1082", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1082, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Stunt Singlet (Yellow)", - "GiftDropId": 1086, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1086", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1086, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,i1XbjBqTu0CILIuJClWimA,B-sIpWNOfEigMeQF-WVR1g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Stunt Singlet (Pink)", - "GiftDropId": 1089, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1089", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1089, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Teal)", - "GiftDropId": 1092, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1092", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1092, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,grutFwJD_0Cb3t6fddNg6w,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Red)", - "GiftDropId": 1093, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1093", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1093, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,EbVDqEJQOk6j0UvX3t-8rQ,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Blue)", - "GiftDropId": 1094, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1094", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1094, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,C3ll7uPfUkeZ1QLX80_BpQ,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Yellow)", - "GiftDropId": 1095, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1095", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1095, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,JS7aa4QSUUOpUYPqRZEb5g,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Orange)", - "GiftDropId": 1096, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1096", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1096, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Animal Sweater (Ferret) ", - "GiftDropId": 1101, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1101", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1101, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,azbt5pgvrUS4LQwhndFeJg,cHZ4lDnSoUypIXCiRRowzg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Animal Sweater (Axolotl)", - "GiftDropId": 1102, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1102", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1102, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,6dzz5ZcGtE6bEjQHxWmo0A,2cSC290cPkCOrW5vtlVUxw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Animal Sweater (Penguin)", - "GiftDropId": 1103, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1103", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1103, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,yXVeN9SzQUKE_6u_2KPzgw,sWgRczvpUU6ZHeoMrMD_yw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Animal Sweater (Toucan)", - "GiftDropId": 1104, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1104", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1104, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,61VZkFjB402brzWm4UsftA,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Archer Tunic (Grey)", - "GiftDropId": 1111, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1111", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1111, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Coat (Brown)", - "GiftDropId": 1115, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1115", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1115, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,da185fbb-ad2b-4f30-87a2-491f24b78ebb,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Coat (Black)", - "GiftDropId": 1116, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1116", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1116, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,bea795cc-aabd-4229-84dd-49ab4f91a445,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Coat (Tan)", - "GiftDropId": 1117, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1117", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1117, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,2APfqVnnQUaDYKi-fQg8jg,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Coat (Red)", - "GiftDropId": 1118, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1118", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1118, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e48955ae-50e0-4f55-93a1-611150142331,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbarian Tunic", - "GiftDropId": 1119, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1119", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1119, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Shirt (Red)", - "GiftDropId": 1120, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1120", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1120, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,a5925738-a451-4f25-b622-ccbfa12bd88c,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Shirt (Black)", - "GiftDropId": 1121, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1121", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1121, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,c64ac7a9-7fd4-4587-8626-0413a190b706,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Shirt (Green)", - "GiftDropId": 1122, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1122", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1122, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sarong Swimsuit", - "GiftDropId": 1123, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1123", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1123, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,1919d319-6cce-4500-8766-15fed6a13fa8,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Suit (Gold)", - "GiftDropId": 1126, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1126", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1126, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,lBe3yxuE40eBmTrnEHBqQQ,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Suit (Purple)", - "GiftDropId": 1127, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1127", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1127, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,oZ8k0Qv3SkG-DkY0_dP7UA,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Suit (Teal)", - "GiftDropId": 1128, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1128", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1128, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Biker Jacket", - "GiftDropId": 1129, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1129", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1129, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bog Monster Suit", - "GiftDropId": 1131, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1131", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1131, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9ffa6e06-5200-4e53-ac13-f8491aecc864,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bounty Hunter Armor ", - "GiftDropId": 1133, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1133", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1133, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Turkey)", - "GiftDropId": 1134, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1134", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1134, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,-k9_-2onrEG407or8t1RFw,b-IM3eYMJUa40395O5XeLg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Hambone)", - "GiftDropId": 1135, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1135", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1135, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,GDvaUU10-EKh3pKUQ9tnag,b-IM3eYMJUa40395O5XeLg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Runway)", - "GiftDropId": 1136, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1136", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1136, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,kLyM-6otSUy2ql5SEmnF9Q,b-IM3eYMJUa40395O5XeLg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Spared)", - "GiftDropId": 1137, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1137", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1137, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,8xjU4GQ4OkaqGyad-ypwtw,5RUG6i2Mx0-55IO-IlhUdQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Flames, Red)", - "GiftDropId": 1138, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1138", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1138, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,032pE8s9Ik-2CImFVDrSqg,5RUG6i2Mx0-55IO-IlhUdQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Flames, Blue)", - "GiftDropId": 1139, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1139", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1139, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,M4765UHzsUeNTwH-Pcxp1g,5RUG6i2Mx0-55IO-IlhUdQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Flames, Green)", - "GiftDropId": 1140, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1140", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1140, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,ghM-uFq5-0Ci38AOHa9zZA,IWg9wuda4kaCilJk8JQpTQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Deadwood)", - "GiftDropId": 1142, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1142", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1142, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,Gtq8yRlt1UeFW8U-sc7FiA,IWg9wuda4kaCilJk8JQpTQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Brooklyn)", - "GiftDropId": 1143, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1143", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1143, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,XrSL-v2MbkK0md-FMOweOA,IWg9wuda4kaCilJk8JQpTQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Sleeper)", - "GiftDropId": 1144, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1144", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1144, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,KqjQ1xRpokGLKp9GVN1EFA,VO_3cgqQqUOTz30TVUxrFA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Striker)", - "GiftDropId": 1145, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1145", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1145, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yrQCLXiqRUSwnuQRYX2Rsw,VO_3cgqQqUOTz30TVUxrFA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Lily)", - "GiftDropId": 1146, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1146", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1146, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yZR5aX3gQ0WpRUT6cfK1cA,VO_3cgqQqUOTz30TVUxrFA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Split)", - "GiftDropId": 1147, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1147", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1147, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Shirt (Blue)", - "GiftDropId": 1149, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1149", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1149, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,0ec6628c-a106-4452-af82-105a3e3a9f2e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Shirt (Red)", - "GiftDropId": 1150, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1150", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1150, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,rzUd1IMTKUmW0HeMPSIOBQ,0ec6628c-a106-4452-af82-105a3e3a9f2e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Shirt (Green)", - "GiftDropId": 1151, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1151", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1151, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chef Coat (White)", - "GiftDropId": 1154, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1154", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1154, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,PR5dh2jf2kqGLO0lXgA69A,VDn1hO6ahky0GDJt5dRmyg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chef Coat (Black)", - "GiftDropId": 1155, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1155", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1155, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Overcoat (Blue)", - "GiftDropId": 1156, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1156", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1156, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Jacket (Black)", - "GiftDropId": 1157, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1157", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1157, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,Chiz8maLoEGDpZOJZEtdQg,cQUquXMk5EGt0VUCuPKBgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Jacket (Blue)", - "GiftDropId": 1158, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1158", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1158, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,2axtF2iOGkez1kfRRGUbYw,cQUquXMk5EGt0VUCuPKBgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Jacket (Green)", - "GiftDropId": 1159, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1159", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1159, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6423f23e-dde3-4428-96f5-6091027c92cb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Martial Arts Gi (Cunning) ", - "GiftDropId": 1167, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1167", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1167, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Suit (Triton)", - "GiftDropId": 1168, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1168", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1168, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,Su7kiW24d0KapNns96JoFQ,EiIow5mS80qpoS10r1ZdvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Suit (Kraken)", - "GiftDropId": 1169, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1169", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1169, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,CahBzgN3D0y46AQsvGC14A,EiIow5mS80qpoS10r1ZdvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Suit (Leviathan)", - "GiftDropId": 1170, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1170", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1170, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "27e742bf-3081-4274-ba70-301f0edeb4f1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Doctor's Coat", - "GiftDropId": 1172, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1172", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1172, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Shirt (Red)", - "GiftDropId": 1176, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1176", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1176, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,fe5288bc-0e02-4ea3-b17d-dee0e576979d,b0298c45-0dd1-453e-bad4-41e4656bb38e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Shirt (Green)", - "GiftDropId": 1177, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1177", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1177, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,82de1ca3-67d6-454d-84fb-0eeece71fcbc,b0298c45-0dd1-453e-bad4-41e4656bb38e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Shirt (Orange)", - "GiftDropId": 1178, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1178", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1178, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,54d3c589-30ba-44c1-a77c-8f9e16eb0b20,b0298c45-0dd1-453e-bad4-41e4656bb38e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Shirt (Yellow)", - "GiftDropId": 1179, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1179", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1179, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Elven Armor", - "GiftDropId": 1186, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1186", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1186, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Night Coat (Zzz)", - "GiftDropId": 1187, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1187", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1187, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,uDJ5ZqU1f0CiOAH8WY22Yw,KOCzRE4a6EKb3_NVOI_lcg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Night Coat (Dozy)", - "GiftDropId": 1188, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1188", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1188, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,j66We9SYr0SNQ2ufZqIqhA,KOCzRE4a6EKb3_NVOI_lcg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Night Coat (Sandman)", - "GiftDropId": 1189, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1189", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1189, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,_jkPDSXFUkSU_yOfutQ7BA,KOCzRE4a6EKb3_NVOI_lcg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Night Coat (Zonked)", - "GiftDropId": 1190, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1190", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1190, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Uniform (Green)", - "GiftDropId": 1192, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1192", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1192, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,cea53c7f-24a9-4e3b-80b9-fbf95738f973,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Uniform (Orange)", - "GiftDropId": 1193, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1193", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1193, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Uniform (Blue)", - "GiftDropId": 1194, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1194", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1194, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,8c74ee27-3d56-401b-8a8c-7868a80770e8,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Uniform (Black)", - "GiftDropId": 1195, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1195", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1195, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Figure Skater Shirt", - "GiftDropId": 1196, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1196", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1196, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Figure Skater Skirt", - "GiftDropId": 1197, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1197", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1197, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Dress (Silver)", - "GiftDropId": 1198, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1198", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1198, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,565c17e0-496d-45bd-a2c3-564e118c06cc,a240d44f-963d-4d35-b22f-980938c7788d,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Dress (Black)", - "GiftDropId": 1199, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1199", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1199, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,a240d44f-963d-4d35-b22f-980938c7788d,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Dress (Gold)", - "GiftDropId": 1200, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1200", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1200, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e042433a-40a2-4758-8074-3b9d407835ec,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Romper (Pink)", - "GiftDropId": 1202, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1202", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1202, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5362d685-fc55-4b43-85a5-cc3d6cad3f69,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Galaxy)", - "GiftDropId": 1203, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1203", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1203, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gathered Shirt (White)", - "GiftDropId": 1204, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1204", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1204, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,sX0ZZDcCUkyFSJISfvq0vg,ovy_3j_qwE-7mmks1Z47ig,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Harness (Orange)", - "GiftDropId": 1214, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1214", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1214, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,RfZNDPUok0WyQEa3Ko08ow,ovy_3j_qwE-7mmks1Z47ig,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Harness (Blue)", - "GiftDropId": 1217, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1217", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1217, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Black)", - "GiftDropId": 1220, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1220", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1220, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,mvMeyStxGUGlNLSYNeSubQ,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Purple)", - "GiftDropId": 1221, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1221", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1221, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,u_Gzj9Nro0WS48xKnH9few,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Blue)", - "GiftDropId": 1222, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1222", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1222, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,JTgXKeT7w0K2Mw4Jk2HCqg,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Grey)", - "GiftDropId": 1223, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1223", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1223, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,rNhOQoP3XkOBHV28ze2NpA,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Orange)", - "GiftDropId": 1224, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1224", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1224, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,TEgugZRs80iJbhL87RdYwg,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Pink)", - "GiftDropId": 1225, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1225", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1225, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,ytmSzjhCr0Sm58MSNbwJUA,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Green)", - "GiftDropId": 1226, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1226", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1226, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,yM5xRrd9OkmDGyQddwOP6g,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Red)", - "GiftDropId": 1227, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1227", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1227, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LuYelZY8NkqmOp1pnxPXBg,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Yellow)", - "GiftDropId": 1229, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1229", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1229, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "I Heart Rec Room Shirt (White)", - "GiftDropId": 1242, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1242", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1242, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,4oywwjb3-kifr-um9x87Pw,11ZEZTFhy0ONpoXb3kiewQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Suspicious Goblin Shirt", - "GiftDropId": 1243, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1243", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1243, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,i4Zu9uZuWkWwm8IVGZwkbA,RmjxL1O9bEGOuYxY9kzHEA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "I Heart Rec Room Shirt (Orange)", - "GiftDropId": 1244, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1244", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1244, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,HQOKcDCvVUCItkAKo2ygGg,RmjxL1O9bEGOuYxY9kzHEA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "I Heart Rec Room Shirt (Blue)", - "GiftDropId": 1245, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1245", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1245, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Coat (Mastermind)", - "GiftDropId": 1247, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1247", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1247, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,YB7kXMyLJ0mF_5WidhmH8A,SeA8s77hr0K6DRZyVlRTCg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Coat (Spy)", - "GiftDropId": 1248, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1248", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1248, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,bQyNgFWAe0SPttPri6hxyg,SeA8s77hr0K6DRZyVlRTCg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Coat (Rogue)", - "GiftDropId": 1249, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1249", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1249, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,wRPoHTsXFESK5pjkxVMqGA,SeA8s77hr0K6DRZyVlRTCg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Coat (Outlaw)", - "GiftDropId": 1250, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1250", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1250, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "85e03c16-4288-45f4-a579-c911437d27d4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hoodie Jacket", - "GiftDropId": 1251, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1251", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1251, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Orange)", - "GiftDropId": 1263, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1263", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1263, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Red)", - "GiftDropId": 1264, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1264", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1264, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Blue)", - "GiftDropId": 1265, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1265", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1265, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Pink)", - "GiftDropId": 1266, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1266", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1266, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Green)", - "GiftDropId": 1267, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1267", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1267, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,d2b40639-5d34-45b6-904e-6dd29030ff44,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Yellow)", - "GiftDropId": 1268, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1268", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1268, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,724c79a3-822c-422f-9462-a5374ee0211c,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (White)", - "GiftDropId": 1269, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1269", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1269, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,c72911d0-453f-4732-b1bd-dad520220a06,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Purple)", - "GiftDropId": 1270, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1270", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1270, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,90bc2d31-1715-4d1a-813a-7c57e66cb017,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Teal)", - "GiftDropId": 1271, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1271", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1271, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Black)", - "GiftDropId": 1272, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1272", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1272, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,PMa9370LPEig_7pKwCceEQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Knight Armor (Green)", - "GiftDropId": 1279, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1279", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1279, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lacrosse Shirt (Purple)", - "GiftDropId": 1280, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1280", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1280, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,e3454bc7-c88d-4958-8b81-db3fe5472a1e,da36bbcc-2a9a-4ba2-9e4a-6f52c9b1ef74,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lacrosse Shirt (Pink)", - "GiftDropId": 1281, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1281", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1281, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Blue)", - "GiftDropId": 1286, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1286", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1286, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,apSQiQ1eO0mEzRsbugeu9w,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Green)", - "GiftDropId": 1287, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1287", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1287, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,VpqHNpPiY0CfRJEjRRM-mw,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Red)", - "GiftDropId": 1288, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1288", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1288, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,Z1F9rjKqCE-Hd2-Ip5g3gA,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Black)", - "GiftDropId": 1289, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1289", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1289, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,iufpnteVCEiiZu_m-yPovQ,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Purple)", - "GiftDropId": 1290, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1290", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1290, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "23944856-b567-4075-815f-261cb4655cff,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Apocalypse Jacket", - "GiftDropId": 1294, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1294", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1294, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Blue)", - "GiftDropId": 1295, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1295", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1295, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,VQjkyb5aoEKHKo_eZsq9ug,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Teal)", - "GiftDropId": 1296, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1296", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1296, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,kTP3xKhzBkuQF3SqvmYFKA,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Green)", - "GiftDropId": 1297, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1297", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1297, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,hYu9itGe1Ee5Neanhj9VtQ,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Orange)", - "GiftDropId": 1298, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1298", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1298, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,FE7_gQNBt0CXzMN6di5HWA,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Red)", - "GiftDropId": 1299, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1299", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1299, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,dYPaOkwy3EGAfvl8RyN4pw,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Pink)", - "GiftDropId": 1300, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1300", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1300, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "RecFly Vest (Red)", - "GiftDropId": 1302, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1302", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1302, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,kkvNbVRjcEKtChpy3W1bqQ,nbhzQy_Hdkeohh4S1IezwA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "RecFly Vest (Black)", - "GiftDropId": 1303, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1303", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1303, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,GVoh3mdWf0WNA9lfqL1GEw,w9qG5gHlAUqh8f9ZgnezsQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "RecFly Vest (Blue)", - "GiftDropId": 1304, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1304", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1304, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,x4PPvuhg6USE6GSFgZZnCg,w9qG5gHlAUqh8f9ZgnezsQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "RecFly Vest (Green)", - "GiftDropId": 1305, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1305", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1305, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Resistance Trench Coat", - "GiftDropId": 1306, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1306", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1306, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Suit (Pinstripe)", - "GiftDropId": 1307, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1307", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1307, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,531b4297-b38b-4362-9854-4f2139ea43be,33ee376a-586e-4aff-a7e4-4213445a3e92,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Suit (Herringbone)", - "GiftDropId": 1308, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1308", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1308, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,newGzX_zA0eGUX3Iayq5Ag,6Jv4AJGBYUGP_n4sDcz2Kw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Suit (Purple)", - "GiftDropId": 1311, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1311", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1311, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nineties Outfit (Da Bomb)", - "GiftDropId": 1313, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1313", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1313, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,ulOBBvFEJ0ioFA1qmL390A,u9yHtj_tfkuowGp0h_YpFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nineties Outfit (Aiight)", - "GiftDropId": 1314, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1314", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1314, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,V4CVhCB8eU-nrfYgticVOA,u9yHtj_tfkuowGp0h_YpFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nineties Outfit (Booyah)", - "GiftDropId": 1315, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1315", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1315, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Black)", - "GiftDropId": 1317, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1317", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1317, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,fvoaMN4M10WS6jiA6XlOJQ,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Blue)", - "GiftDropId": 1318, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1318", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1318, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,PwsLxCnzOkSW-RGz3tNb1w,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Tan)", - "GiftDropId": 1319, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1319", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1319, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,uiBklotTUEqRI2F67vyJyA,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Purple)", - "GiftDropId": 1320, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1320", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1320, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,jXBi28cRV0CEQgKIrpD0_A,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Red)", - "GiftDropId": 1321, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1321", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1321, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Poodle Skirt", - "GiftDropId": 1337, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1337", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1337, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Prankster Jacket", - "GiftDropId": 1338, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1338", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1338, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Jacket (Red)", - "GiftDropId": 1340, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1340", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1340, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,4169bfed-8403-4590-a29d-4941275ac0b6,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Jacket (Pink)", - "GiftDropId": 1341, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1341", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1341, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,0724b166-9ace-46ff-a191-b13f135b00a8,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Jacket (Blue)", - "GiftDropId": 1342, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1342", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1342, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Quilted Vest (Black)", - "GiftDropId": 1344, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1344", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1344, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,QBglgj80zkuvUkk55Y5Feg,ACrBLiAIgEur9V6l_B0CvA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Quilted Vest (Green)", - "GiftDropId": 1345, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1345", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1345, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,-HYrY2A5Tk2UWMi4_hmYbg,ACrBLiAIgEur9V6l_B0CvA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Quilted Vest (Orange)", - "GiftDropId": 1346, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1346", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1346, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,IjRMopsYlUqSE6327I9TIQ,ACrBLiAIgEur9V6l_B0CvA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Quilted Vest (Purple)", - "GiftDropId": 1347, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1347", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1347, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Puffer Vest ", - "GiftDropId": 1348, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1348", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1348, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Raincoat (Yellow)", - "GiftDropId": 1350, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1350", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1350, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,GH9q8_0O9EqjGdz7lGWD2g,T7zwcIIc8Ee3ud8a2JCuwQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Raincoat (Blue)", - "GiftDropId": 1351, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1351", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1351, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,M-N9vQt0CEefqgmeLp3l4g,T7zwcIIc8Ee3ud8a2JCuwQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Raincoat (Green)", - "GiftDropId": 1352, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1352", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1352, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,q_HcScqHgEG-x70g1wtfLA,T7zwcIIc8Ee3ud8a2JCuwQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Raincoat (Red)", - "GiftDropId": 1353, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1353", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1353, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,b415fe60-3e9d-4f4d-a53a-ca15eac6af7d,d21e1b6f-9c9e-42b4-bad5-201ec43161e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ranger Uniform (Green)", - "GiftDropId": 1356, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1356", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1356, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Dress (Blue)", - "GiftDropId": 1357, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1357", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1357, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,0ps19D7b_U2iejdKQFORyA,PoMG28QAskagun1LSd4C_A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Dress (Red)", - "GiftDropId": 1358, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1358", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1358, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,t1MeoroFOUioYmPfT9mCeA,PoMG28QAskagun1LSd4C_A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Dress (Green)", - "GiftDropId": 1359, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1359", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1359, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,pjkTGVHkIE-BzCVi1KAesQ,PoMG28QAskagun1LSd4C_A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Dress (Black)", - "GiftDropId": 1360, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1360", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1360, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Tabard (Blue)", - "GiftDropId": 1362, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1362", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1362, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,5TJPDmvEBEOkP82ZWLFqtg,50NUFrDxbUKmXbyAHBenvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Tabard (Red)", - "GiftDropId": 1363, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1363", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1363, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,rCeRk8Pdl0W5M47JAQPhpw,50NUFrDxbUKmXbyAHBenvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Tabard (Green)", - "GiftDropId": 1364, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1364", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1364, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,s2kCppLsN0uY7Hy6qjQc-g,50NUFrDxbUKmXbyAHBenvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Tabard (Black)", - "GiftDropId": 1366, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1366", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1366, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Shirt (Tan)", - "GiftDropId": 1367, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1367", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1367, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,84c016ad-133f-45e3-a412-cac35612540b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Shirt (Green)", - "GiftDropId": 1368, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1368", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1368, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Wetsuit (Orange)", - "GiftDropId": 1382, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1382", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1382, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,VqtOYBiKRkaSW4xAlBxQgg,xTqtLPQVyEKjAQZYl6HGow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Wetsuit (Blue)", - "GiftDropId": 1383, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1383", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1383, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Coat (Tan)", - "GiftDropId": 1387, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1387", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1387, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,Z1Ib9r_fkUqgoZk0uid_Xw,9ZP617DQk0mZ10J3d5q9oA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Coat (Black)", - "GiftDropId": 1388, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1388", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1388, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,msOFHoFN9UORkeXXtdqBsw,9ZP617DQk0mZ10J3d5q9oA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Coat (Grey)", - "GiftDropId": 1389, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1389", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1389, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Jacket (Summit)", - "GiftDropId": 1395, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1395", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1395, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,fXNkMWFMV0aXalK_y_8SHw,HQQWccdyakaEmntPhvC6CQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Jacket (Chill)", - "GiftDropId": 1396, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1396", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1396, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, Blue)", - "GiftDropId": 1397, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1397", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1397, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, White)", - "GiftDropId": 1398, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1398", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1398, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, Black)", - "GiftDropId": 1399, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1399", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1399, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, Green)", - "GiftDropId": 1400, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1400", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1400, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,4Eck_dNL1UKlIZWsA1YppQ,WeyKw_WS70Cx3NZdOaxGeA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, Grey)", - "GiftDropId": 1401, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1401", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1401, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "rJ9zPPGdlk2i24sxLfkqng,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lifeguard Uniform", - "GiftDropId": 1409, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1409", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1409, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Uniform (Red)", - "GiftDropId": 1412, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1412", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1412, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,XFCpIdeDXUqeYCIgh4fGtg,MBuxBAIkpkWI26d-arAKQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Uniform (Blue)", - "GiftDropId": 1413, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1413", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1413, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,oKxmH-1s2EyIDkZoOQSQQw,MBuxBAIkpkWI26d-arAKQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Uniform (Green)", - "GiftDropId": 1414, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1414", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1414, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,MxnAq_XOw0uTzQ8IIxqb_Q,MBuxBAIkpkWI26d-arAKQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Uniform (Yellow)", - "GiftDropId": 1415, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1415", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1415, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Vest", - "GiftDropId": 1423, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1423", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1423, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,cbn6vE0gDUOuklVhJv1vNA,Ru4HN3stVUutQ9rUh7ro1g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Vest (Grey)", - "GiftDropId": 1425, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1425", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1425, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e29d044e-79fb-4280-bca9-aa1e1257e968,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Martial Arts Gi (Speed)", - "GiftDropId": 1426, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1426", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1426, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Vest", - "GiftDropId": 1427, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1427", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1427, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,gy-xeYKKREaBlx9fUmuW2w,C8gCmBZ8RUG83vvDw_UYew,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Vest (Silver)", - "GiftDropId": 1429, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1429", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1429, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Corset", - "GiftDropId": 1430, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1430", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1430, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,rsUfUnTwbU6zrjrHWps1yA,GJRG8sCM7kSGfUd9gLwpgQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Corset (Silver)", - "GiftDropId": 1432, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1432", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1432, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "25769d1f-4ecb-4d92-b692-322b38c013b5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Martial Arts Gi (Strength) ", - "GiftDropId": 1433, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1433", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1433, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hero Guy Armor", - "GiftDropId": 1434, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1434", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1434, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Poindexter Shirt (White)", - "GiftDropId": 1435, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1435", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1435, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,lq59KZwElEStrviDEQLLcA,olyS074RHU-ojE0GzBBYJw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Poindexter Shirt (Black)", - "GiftDropId": 1436, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1436", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1436, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Shirt", - "GiftDropId": 1444, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1444", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1444, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,NKf5-r2S_0iP0SaO9bjvaw,0WOBGm34H0ySBC10VToa9g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Paradise)", - "GiftDropId": 1446, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1446", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1446, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,adJVA26PyUSVvmZgxkCAmQ,0WOBGm34H0ySBC10VToa9g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Poppy)", - "GiftDropId": 1447, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1447", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1447, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,4ijeE3LqUUuSplKrMto6Kg,ytfIq0TiYU6EUdd0ruaGAQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Begonia)", - "GiftDropId": 1448, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1448", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1448, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,d27e5m1BLUWI42Pxnj6F4A,ytfIq0TiYU6EUdd0ruaGAQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Dahlia)", - "GiftDropId": 1449, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1449", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1449, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,RZFWcTzxPkOfUuTIQ1mzkg,ytfIq0TiYU6EUdd0ruaGAQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Primrose)", - "GiftDropId": 1450, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1450", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1450, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,XT_txjZfIUOT400UPHLaRA,M-mi8QUHwEeIewXE8uAlrQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tourist Shirt (Green)", - "GiftDropId": 1451, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1451", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1451, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,gwdtq3NiEEmMKYtn1VPoiw,M-mi8QUHwEeIewXE8uAlrQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Shirt (Yellow)", - "GiftDropId": 1453, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1453", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1453, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Shirt (Tan)", - "GiftDropId": 1454, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1454", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1454, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,H0sqS2_VPEieVrHSyMNo7g,9HVoTIf90Ea8_czICVg9AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Shirt (Black)", - "GiftDropId": 1455, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1455", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1455, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Tank Top (Tan)", - "GiftDropId": 1458, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1458", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1458, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,3qu7mxSNpkKRrYMhsWHVGg,K5NXVecrqk6Nb6SkBu08ww,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Tank Top (Black)", - "GiftDropId": 1459, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1459", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1459, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,Ij8MXrl1Okip4M7y-gF23Q,K5NXVecrqk6Nb6SkBu08ww,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Tank Top (Red)", - "GiftDropId": 1460, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1460", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1460, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,qEojxjSXm06CX52hRDJAew,K5NXVecrqk6Nb6SkBu08ww,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Tank Top (White)", - "GiftDropId": 1461, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1461", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1461, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Blue)", - "GiftDropId": 1462, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1462", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1462, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (White)", - "GiftDropId": 1463, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1463", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1463, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Black)", - "GiftDropId": 1464, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1464", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1464, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,o2WfRyjJy0CKoUg8YIxNjQ,sxWOOK1RwUOp5YqZ7a36xg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Tan)", - "GiftDropId": 1465, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1465", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1465, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Green)", - "GiftDropId": 1466, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1466", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1466, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,sscD2O3LEUOAKkqjGpGe8g,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Orange)", - "GiftDropId": 1467, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1467", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1467, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,hRxyLsKfsESFAsXAyZQjoA,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Blue)", - "GiftDropId": 1468, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1468", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1468, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,kgCKjtSjFEmFq9ez2llxKQ,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Green)", - "GiftDropId": 1469, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1469", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1469, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,KaZqNx5VKkarRrOJcTuD9A,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Red)", - "GiftDropId": 1470, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1470", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1470, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,eOJkmpSL4EypK-AQz7j8gQ,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Black)\t", - "GiftDropId": 1471, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1471", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1471, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Black)", - "GiftDropId": 1477, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1477", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1477, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,9b9t8_aKH0-gQXMhZycaOA,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Orange)", - "GiftDropId": 1478, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1478", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1478, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Zz4XatKfUEapReRAQHxKKA,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (White)", - "GiftDropId": 1479, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1479", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1479, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Jt0QqNrAp0qzUR_RQoivVg,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Green)", - "GiftDropId": 1480, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1480", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1480, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,lBePHNL9LkyaAjEFyFE8Sw,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Red)", - "GiftDropId": 1481, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1481", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1481, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G4HIPUjekUigiU0-Kr9mdA,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Yellow)", - "GiftDropId": 1482, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1482", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1482, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,5mcp7-2ZEE6n3-zN3_CoWw,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Purple)", - "GiftDropId": 1483, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1483", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1483, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,R0UCacpdhUS906Xf7l142A,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Teal)", - "GiftDropId": 1484, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1484", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1484, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G-VKgepBkkeATcwCaS6Rwg,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Grey)", - "GiftDropId": 1485, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1485", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1485, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,1LonkCbt4kykeAScYKpwyg,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Navy)", - "GiftDropId": 1486, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1486", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1486, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,IXWd396grEOWHt32L7fCpQ,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Blue)", - "GiftDropId": 1487, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1487", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1487, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Vest (Black)", - "GiftDropId": 1499, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1499", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1499, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,ffHKr5EcIU24PbAtWSnalw,bVrkIyADCUiGNYWdmP_HPw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Vest (Red)", - "GiftDropId": 1500, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1500", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1500, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,m4W5D0Oa9kaWa-8I96YYzA,WF_fg80f30qvHit0vGBwCA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Vest (Green)", - "GiftDropId": 1501, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1501", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1501, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Donut Dreams)", - "GiftDropId": 1502, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1502", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1502, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,nu_UGtkJOUK-5MWaW83MUg,pgBFpOtl00K2zsTJcfrefQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Watermelon Rain)", - "GiftDropId": 1503, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1503", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1503, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,sJioq5ARDUyMHFji_6OxFw,bjXO36Nu6EWD2dU1UC4Uwg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Pina Colada)", - "GiftDropId": 1504, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1504", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1504, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,56qchovVVEaVwL9S52kneA,BAjMoTHbD0mSCjoG9jmzjA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Sour Popsicle)", - "GiftDropId": 1505, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1505", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1505, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,zJMD-_HR80WCAUqYGe7_NA,rAzhaLh1nEWMd9v1D-HWcQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Lonely Island)", - "GiftDropId": 1506, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1506", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1506, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,9P8ARRUYdk6hCoGMKhix4w,o__JORNtYEiJEyyoBIimPA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Pink Flamingo)", - "GiftDropId": 1507, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1507", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1507, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,aBQ3R9boek-mYeSYSNvDbQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Witch Hunter Torso (Blue)", - "GiftDropId": 1524, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1524", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1524, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3KmqVuMQkCYK6sVTMOTOA,8768aa33-b014-4062-b323-b146dd7d78d2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wizard Robes (Purple)", - "GiftDropId": 1531, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1531", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1531, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Towel Cape", - "GiftDropId": 1533, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1533", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1533, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f6a7dee-0b44-4138-b3a7-a079dbc63e83,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Monkey Backpack", - "GiftDropId": 1535, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1535", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1535, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Striped, Red)", - "GiftDropId": 1539, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1539", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1539, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Plaid, Red)", - "GiftDropId": 1540, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1540", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1540, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Plaid, Blue)", - "GiftDropId": 1541, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1541", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1541, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Plaid, White)", - "GiftDropId": 1542, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1542", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1542, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Dots, Red)", - "GiftDropId": 1543, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1543", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1543, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Dots, Blue)", - "GiftDropId": 1544, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1544", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1544, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Dots, White)", - "GiftDropId": 1545, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1545", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1545, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Yellow)", - "GiftDropId": 1546, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1546", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1546, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,026ca50e-3a81-43cf-87f5-950687b7bbdd,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Pink)", - "GiftDropId": 1547, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1547", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1547, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,6584dada-499e-4d7c-958d-466955b20640,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Blue)", - "GiftDropId": 1548, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1548", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1548, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,uUOO-k5KS0mU7B5BLaOpnA,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Black)", - "GiftDropId": 1549, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1549", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1549, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,Ijf-j7EgEkGYOKo9SQNLRw,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Red)", - "GiftDropId": 1550, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1550", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1550, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Teal)", - "GiftDropId": 1551, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1551", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1551, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,HncURj5yi0ykk2cVyCZ4Sw,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Red)", - "GiftDropId": 1552, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1552", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1552, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,42ZNGHXMvU29yo9s9tVpOQ,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Blue)", - "GiftDropId": 1553, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1553", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1553, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,VDo682NvSUa8xYn8zTX-AQ,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Yellow)", - "GiftDropId": 1554, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1554", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1554, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,FvEjo9let0e_Sr-kWq5AvQ,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Orange)", - "GiftDropId": 1555, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1555", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1555, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,8hUBfmq28EixYjv92Xcrgg,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Archer Gloves (Grey)", - "GiftDropId": 1562, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1562", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1562, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Gloves (White)", - "GiftDropId": 1563, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1563", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1563, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,y_gTbnuYS0GKJmnCs2retw,hjk9OO8CW0KNGR7A6_p84A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Gloves (Orange)", - "GiftDropId": 1564, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1564", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1564, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Gloves (Brown)", - "GiftDropId": 1565, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1565", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1565, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,97bbb384-b37e-4ea1-902c-88fbd6854ab5,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Gloves (Black)", - "GiftDropId": 1566, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1566", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1566, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7fb8496f-0e6c-4e48-b8fa-5709ebbf4820,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Gloves (Tan)", - "GiftDropId": 1567, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1567", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1567, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7nRz9Jmnn066_PzngkhfFA,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Gloves (Red)", - "GiftDropId": 1568, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1568", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1568, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Wrist (White)", - "GiftDropId": 1569, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1569", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1569, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,bb01b51e-a95f-441e-8c52-abc3aeed7145,f7c7d05f-5454-445a-af38-25f110bd204a,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Wrist (Black)", - "GiftDropId": 1570, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1570", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1570, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,1919d319-6cce-4500-8766-15fed6a13fa8,1f18670d-df52-4d2b-8009-a32cf7c67b40,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Gloves (Gold)", - "GiftDropId": 1572, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1572", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1572, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,lBe3yxuE40eBmTrnEHBqQQ,1f18670d-df52-4d2b-8009-a32cf7c67b40,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Gloves (Purple)", - "GiftDropId": 1573, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1573", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1573, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,oZ8k0Qv3SkG-DkY0_dP7UA,1f18670d-df52-4d2b-8009-a32cf7c67b40,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Gloves (Teal)", - "GiftDropId": 1574, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1574", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1574, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Gloves (Blue)", - "GiftDropId": 1575, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1575", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1575, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,0XPd5RzNJEepHztqwAznHQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Gloves (Yellow)", - "GiftDropId": 1576, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1576", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1576, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,XNq4Cns4lEGydtktdsXlmQ,0XPd5RzNJEepHztqwAznHQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Gloves (Navy)", - "GiftDropId": 1577, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1577", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1577, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,83522c12-9549-4d74-8c87-bae210bcd2bf,0XPd5RzNJEepHztqwAznHQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Gloves (Black)", - "GiftDropId": 1578, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1578", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1578, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4e42e02e-33fd-4ff9-b74e-9bde26253c35,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bog Monster Wrist", - "GiftDropId": 1580, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1580", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1580, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2ddd2c2b-596c-4022-a488-655b0db1c265,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bounty Hunter Glove", - "GiftDropId": 1581, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1581", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1581, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Gloves (Blue)", - "GiftDropId": 1582, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1582", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1582, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Gloves (Red)", - "GiftDropId": 1583, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1583", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1583, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,rzUd1IMTKUmW0HeMPSIOBQ,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Gloves (Green)", - "GiftDropId": 1584, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1584", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1584, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Cuffs (Black)", - "GiftDropId": 1585, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1585", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1585, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,5Dbc8qCaY0OXEuwykM4naA,awWjleyNP0akWNYJoehCLA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Cuffs (Blue)", - "GiftDropId": 1586, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1586", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1586, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,HBt3ToOkUUereoPKwyvzuw,awWjleyNP0akWNYJoehCLA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Cuffs (Green)", - "GiftDropId": 1587, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1587", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1587, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Brown)", - "GiftDropId": 1593, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1593", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1593, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,17e44296-1cd9-4f8e-9aa7-3837dc69279a,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Cherry)", - "GiftDropId": 1594, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1594", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1594, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c4ebfd1a-fcda-4b98-a151-a941b1801867,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1002, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Black, Gold)", - "GiftDropId": 1595, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1595", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1595, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c0c33a35-494c-4a1a-aa53-d27d9b9ef5a4,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1002, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Yellow)", - "GiftDropId": 1596, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1596", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1596, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wat8f6fs80KptZbW39e8tA,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (White)", - "GiftDropId": 1597, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1597", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1597, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wkqKPZmnoU-8TXSWzi2-Ow,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Black, Silver)", - "GiftDropId": 1598, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1598", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1598, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Gloves (Triton)", - "GiftDropId": 1599, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1599", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1599, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,Su7kiW24d0KapNns96JoFQ,0p5N9U5qokKdQhW07yYLGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Gloves (Kraken)", - "GiftDropId": 1600, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1600", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1600, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,CahBzgN3D0y46AQsvGC14A,0p5N9U5qokKdQhW07yYLGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Gloves (Leviathan)", - "GiftDropId": 1601, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1601", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1601, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Gloves (Red)", - "GiftDropId": 1602, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1602", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1602, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,fe5288bc-0e02-4ea3-b17d-dee0e576979d,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Gloves (Green)", - "GiftDropId": 1603, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1603", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1603, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,b444ed0a-eab5-4bd6-af34-d080de74a149,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Gloves (Orange)", - "GiftDropId": 1604, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1604", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1604, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,8053b5e5-0f67-4329-a45d-1ee9fc830820,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Gloves (Yellow)", - "GiftDropId": 1605, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1605", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1605, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Elven Bracer", - "GiftDropId": 1607, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1607", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1607, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Gloves (White)", - "GiftDropId": 1608, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1608", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1608, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,18b52db5-0261-46a0-9214-ff510d455ed9,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Gloves (Orange)", - "GiftDropId": 1609, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1609", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1609, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,55b4e661-43e1-4708-82d5-2dd2bebd4f45,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Gloves (Blue)", - "GiftDropId": 1610, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1610", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1610, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,8c74ee27-3d56-401b-8a8c-7868a80770e8,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Gloves (Black)", - "GiftDropId": 1611, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1611", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1611, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Gloves (Black)", - "GiftDropId": 1612, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1612", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1612, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,30c61e63-5e09-4a6f-8915-1e1fe4d55cf0,0e42108e-3b08-49b4-86c0-7984719e8380,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Gloves (Silver)", - "GiftDropId": 1613, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1613", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1613, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,2cf2b644-3fa6-449c-9fe8-d0ab917f3106,0e42108e-3b08-49b4-86c0-7984719e8380,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Gloves (Gold)", - "GiftDropId": 1614, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1614", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1614, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,90qQe0AR3kOou0MsuoTmPA,ojCeJ1VwtUelyVqFnUwK5A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Mitt (Blue)", - "GiftDropId": 1620, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1620", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1620, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,hZKPr4sg10SRj9DLuEgOrw,ojCeJ1VwtUelyVqFnUwK5A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Mitt (Black)", - "GiftDropId": 1621, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1621", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1621, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,x3Q0vVeG_E6juqGM1o0SOQ,ojCeJ1VwtUelyVqFnUwK5A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Mitt (White)", - "GiftDropId": 1622, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1622", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1622, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,sX0ZZDcCUkyFSJISfvq0vg,rgzG7sfrlkqd9EO13LNmpQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Wrist Guard (Green)", - "GiftDropId": 1624, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1624", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1624, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,RfZNDPUok0WyQEa3Ko08ow,rgzG7sfrlkqd9EO13LNmpQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Wrist Guard (Pink)", - "GiftDropId": 1627, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1627", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1627, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Gloves (Mastermind)", - "GiftDropId": 1630, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1630", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1630, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,DtFYrQwaCky5C1ZycqZbiQ,egpzBs77Q0CpDndZHqXOog,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Gloves (Spy)", - "GiftDropId": 1631, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1631", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1631, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,9SAPupKy_EO6YeG0SMkI5A,egpzBs77Q0CpDndZHqXOog,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Gloves (Rogue)", - "GiftDropId": 1632, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1632", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1632, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,hiMYlmk5sEqh-sElOY3A9g,egpzBs77Q0CpDndZHqXOog,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Gloves (Outlaw)", - "GiftDropId": 1633, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1633", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1633, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,PMa9370LPEig_7pKwCceEQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Knight Gauntlet (Green)", - "GiftDropId": 1640, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1640", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1640, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Blue)", - "GiftDropId": 1645, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1645", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1645, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,UUyjVU4mvECPhI9xTMYR1Q,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Green)", - "GiftDropId": 1646, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1646", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1646, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,HWc25-d8dUmNN2F3n8mV5A,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Red)", - "GiftDropId": 1647, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1647", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1647, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,Y0e7o0_BKUm7XJSLediN5w,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Black)", - "GiftDropId": 1648, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1648", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1648, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,MS7EPNLJEEyMLC6_yHQYtA,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Purple)", - "GiftDropId": 1649, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1649", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1649, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1fed823a-22bb-4225-bdc4-491da6eba875,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Apocalypse Gloves", - "GiftDropId": 1650, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1650", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1650, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Blue)", - "GiftDropId": 1651, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1651", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1651, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,zaSTWOUy_k6cnoVVYzypWg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Teal)", - "GiftDropId": 1652, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1652", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1652, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,1FcyrVGyGEC9dmOq_51nFQ,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Green)", - "GiftDropId": 1653, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1653", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1653, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,xpkEQ6yjhU-WfFPSjvPdHg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Orange)", - "GiftDropId": 1654, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1654", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1654, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,N9CBuYaMtUOrCks5UcOycg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Red)", - "GiftDropId": 1655, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1655", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1655, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,LDjFJtM-WkeYhtwA7cyDOg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Pink)", - "GiftDropId": 1656, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1656", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1656, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Cuffs (Pinstripe)", - "GiftDropId": 1657, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1657", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1657, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,531b4297-b38b-4362-9854-4f2139ea43be,c2a9c007-2748-4fa2-ab9b-0081eef792f1,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Cuffs (Herringbone)", - "GiftDropId": 1658, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1658", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1658, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,newGzX_zA0eGUX3Iayq5Ag,QBzMp7MdAUOLIofvddui1A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Cuffs (Purple)", - "GiftDropId": 1660, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1660", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1660, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Gloves", - "GiftDropId": 1662, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1662", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1662, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Wristbands (Black)", - "GiftDropId": 1668, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1668", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1668, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,a6796264-9c7e-4605-830c-06db8d0dc780,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Wristbands (Blue)", - "GiftDropId": 1669, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1669", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1669, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,f3b2330a-b981-4c7e-902f-1f57382f2388,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Wristbands (Pink)", - "GiftDropId": 1670, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1670", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1670, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,baffdefe-de21-4551-9330-b50873965bdd,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Wristbands (Red)", - "GiftDropId": 1671, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1671", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1671, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Robot Gauntlets", - "GiftDropId": 1673, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1673", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1673, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Gloves (Tan)", - "GiftDropId": 1674, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1674", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1674, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,fa9a3d8e-16c9-4a7e-9166-3226e0d13c39,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Gloves (Green)", - "GiftDropId": 1675, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1675", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1675, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Cuff", - "GiftDropId": 1706, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1706", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1706, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,64Hvmzrb3Uu9X_dCA3M3Jw,rPpYm5fIzky4vqVB26guAw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Cuff (Silver)", - "GiftDropId": 1707, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1707", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1707, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hero Bracer ", - "GiftDropId": 1708, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1708", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1708, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (Blue)", - "GiftDropId": 1711, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1711", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1711, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,yA0KhVg19kWqG1UkyxQogQ,yBNsYcZXzEiuR0u3tWnnWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (White)", - "GiftDropId": 1712, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1712", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1712, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,P9bBSL0YLEyjN8PxMfgbKQ,yBNsYcZXzEiuR0u3tWnnWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (Black)", - "GiftDropId": 1713, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1713", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1713, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,o2WfRyjJy0CKoUg8YIxNjQ,sHyNs-dpc0-_Ah-HJVczcw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (Tan)", - "GiftDropId": 1714, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1714", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1714, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,bgRKH1wfqkWVHcuSnFYnlQ,sHyNs-dpc0-_Ah-HJVczcw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (Green)", - "GiftDropId": 1715, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1715", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1715, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,aBQ3R9boek-mYeSYSNvDbQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Witch Hunter Gloves (Blue)", - "GiftDropId": 1736, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1736", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1736, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3KmqVuMQkCYK6sVTMOTOA,47514b9b-0d17-4727-97ed-dab67e7fe031,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wizard Bracers (Purple)", - "GiftDropId": 1743, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1743", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1743, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,j367nSYyg06rOMZ1GmfmFA,FS7kgc4DpkKuar24J9dW8g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wristbands (Plaid)", - "GiftDropId": 1767, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1767", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1767, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,2qYs9IkE90eppx1DggNlsA,6Y43EyTpiEejGp0ODWTSjA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wristbands (Moons & Stars)", - "GiftDropId": 1768, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1768", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1768, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,JV60jZGerUWuzQ2rRnwquQ,gSb8iLTEZ0mi3g5-jZXifQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wristbands (Polka Dot)", - "GiftDropId": 1769, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1769", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1769, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "19ef59c7-f74b-4c63-935a-1d4b1abd8518", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Coop)", - "GiftDropId": 1950, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc Coop Debug: 1950", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1950, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "2b70a76e-6f48-402e-90ff-40b06aa23eb8", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Coach Select)", - "GiftDropId": 1951, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc CoachSelect Debug: 1951", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1951, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "9d2a3618-12b3-4ca0-be59-ed15d7926d77", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Laser)", - "GiftDropId": 1952, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc Laser Debug: 1952", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1952, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "7877964e-3a2b-4818-8513-0e26a707bd7c", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Clear)", - "GiftDropId": 1953, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc Clear Debug: 1953", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1953, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "bd3f6aa5-c6e0-4e06-901d-1176accf1003", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Wood)", - "GiftDropId": 1954, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc Wood Debug: 1954", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1954, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "33c84c50-7c2e-4a80-ad06-79c4f20f829e", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Wood)", - "GiftDropId": 1957, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Wood Debug: 1957", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1957, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "7ef5d1d9-24db-428c-85e0-107c1bfcc026", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Orange)", - "GiftDropId": 1958, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Orange Debug: 1958", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1958, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "4aff20ee-0b20-434b-a030-d3e1764fe4e7", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Purple)", - "GiftDropId": 1959, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Purple Debug: 1959", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1959, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "36751c4a-86a9-40e1-bef2-84f962ab678d", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Vitton)", - "GiftDropId": 1960, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Vitton Debug: 1960", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1960, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ec5ef0f3-c072-45ec-bb8f-3781fb16e067", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Plaid)", - "GiftDropId": 1961, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Plaid Debug: 1961", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1961, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "b8d5612b-2c6f-46d6-9412-decddac7d4c1", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Pirate)", - "GiftDropId": 1962, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Pirate Debug: 1962", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1962, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Dg9PFcg-JUia72PnYJqkQg", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Caution)", - "GiftDropId": 1963, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Caution Debug: 1963", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1963, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "z0Xw8_BUZUODrGHSZcLHHQ", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Roses)", - "GiftDropId": 1964, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Valentines Debug: 1964", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1964, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "61e49c13-b414-425f-8e8b-bdcf3d12a5bf", - "EquipmentPrefabName": "[PaintballShotgun]", - "FriendlyName": "Paintball Shotgun Skin (Wood)", - "GiftDropId": 1965, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShotgun Wood Debug: 1965", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1965, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f27af5d7-c741-4457-8c98-8e8791f1a41c", - "EquipmentPrefabName": "[PaintballShotgun]", - "FriendlyName": "Paintball Shotgun Skin (Plaid)", - "GiftDropId": 1966, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShotgun Plaid Debug: 1966", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1966, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ZMAx_-B_7kWy6-TLXx8g6Q", - "EquipmentPrefabName": "[PaintballShotgun]", - "FriendlyName": "Paintball Shotgun Skin (Watermelon)", - "GiftDropId": 1968, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShotgun Watermeon Debug: 1968", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1968, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "CwIBKjm3G0-xUGt_9Gf7UQ", - "EquipmentPrefabName": "[PaintballShotgun]", - "FriendlyName": "Paintball Shotgun Skin (Caution)", - "GiftDropId": 1969, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShotgun Caution Debug: 1969", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1969, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "5dcf8a2e-6fa6-4007-ac1e-73dd53c4c247", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Purple)", - "GiftDropId": 1970, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "Basketball Purple Debug: 1970", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1970, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e6899422-ab2f-4bd9-8e98-aef950ec27b6", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Blue)", - "GiftDropId": 1971, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "Basketball Blue Debug: 1971", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1971, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d6d22997-fe39-4ffa-b1b3-4955368c829a", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Vitton)", - "GiftDropId": 1972, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Basketball Vitton Debug: 1972", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1972, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "56582acf-c7a0-4aff-b3aa-2fdea4d254a3", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Pride)", - "GiftDropId": 1973, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": "Basketball Rainbow Debug: 1973", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1973, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "56c9a6db-0f54-482c-aba9-e265f899771d", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Coach Select)", - "GiftDropId": 1974, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": "Basketball CoachSelect Debug: 1974", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1974, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "WOWwmg7jg0mH2g4LJUp6fA", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Cozy)", - "GiftDropId": 1975, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "Basketball Cozy Debug: 1975", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1975, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "174adb53-bc6e-4fcf-b03d-a00fc3deeb49", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Wood)", - "GiftDropId": 1977, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Wood Debug: 1977", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1977, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "fd367329-b8b2-4d44-825a-da16092751e3", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Purple)", - "GiftDropId": 1978, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Purple Debug: 1978", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1978, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "a6c869d9-8f30-4ce6-a7ea-cb7ea9f9d492", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Pirate)", - "GiftDropId": 1979, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Pirate Debug: 1979", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1979, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "jZ7wlwRxgUuWYuLasbnG8w", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Cyber Sunset)", - "GiftDropId": 1980, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield 80s Sunset Debug: 1980", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1980, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "QTyRLpDB3UuReHQqrKxb5A", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Gingerbread)", - "GiftDropId": 1981, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Gingerbread Debug: 1981", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1981, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "gfGhbEMx_kCRdO-6vPOh3g", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Plaid)", - "GiftDropId": 1982, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Plaid Debug: 1982", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1982, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ClJApV0LC0mxh0UiYhaXGQ", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Caution)", - "GiftDropId": 1983, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Caution Debug: 1983", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1983, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "2389fce4-3ab2-4e05-918c-845eb8538bed", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Goblin)", - "GiftDropId": 1985, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Goblin Debug: 1985", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1985, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "93f5418e-a03d-4074-804c-daa0e374dd9f", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Purple)", - "GiftDropId": 1986, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Purple Debug: 1986", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1986, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "735b06c6-1b78-4f60-9291-a414a96cd228", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Wood)", - "GiftDropId": 1987, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield wood Debug: 1987", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1987, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "affbab2d-3200-4512-a140-685fdc5570c6", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Yellow)", - "GiftDropId": 1988, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Yellow Debug: 1988", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1988, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "a363ba1b-2f70-4c5f-943a-f45cfa59122b", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Stone)", - "GiftDropId": 1989, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Rock Debug: 1989", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1989, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "eb90210a-6d2d-4429-b1e0-3285333685fc", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Hearts)", - "GiftDropId": 1990, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Valentine Debug: 1990", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1990, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "439be0eb-4d1e-4c80-97f8-b4636d0ce94b", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Pride)", - "GiftDropId": 1991, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Pride Debug: 1991", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1991, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "k0BVix46IEmgVrqUmFU3-Q", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Plaid)", - "GiftDropId": 1992, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Plaid Debug: 1992", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1992, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "RQCgWA3Pf0KTqznUR58-lw", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Caution)", - "GiftDropId": 1993, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Caution Debug: 1993", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1993, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "-rbKD_ztMUq69Nv4tLrrVA", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Snowflake)", - "GiftDropId": 1994, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Snowflake Debug: 1994", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1994, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "L9usPszLFkiA6xs32es2Lw", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Neon)", - "GiftDropId": 1995, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Neon RR+ Debug: 1995", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1995, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "33a7a3dc-5266-4075-b56f-5eaa2c400e9f", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Caution)", - "GiftDropId": 1996, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Caution Debug: 1996", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1996, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "db91b61b-ab32-4895-8f5a-0212c1283cbb", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Vitton)", - "GiftDropId": 1997, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Vitton Debug: 1997", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1997, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "89b1fbbc-e7be-440b-8b22-8fd379c1a568", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Pink)", - "GiftDropId": 1998, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol PINK Debug: 1998", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1998, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "8a2a3219-fed0-4403-9061-451d162307c2", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Candy Cane)", - "GiftDropId": 1999, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol CandyCane Debug: 1999", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1999, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "5nQ2kF6h6kunbk5z18Lozg", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Frankenstein)", - "GiftDropId": 2000, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Frakenblaster Debug: 2000", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2000, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "0cFcVYCLTU6CKhr9uADrbw", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Recasso)", - "GiftDropId": 2001, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Recasso Debug: 2001", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2001, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "aByJShU520OzdOXBV8o0Dg", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Purple Plaid)", - "GiftDropId": 2002, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Plaid Debug: 2002", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2002, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "546b3a57-13d4-4c35-ab3a-bbb7d466f0b8", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Caution)", - "GiftDropId": 2004, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Caution Debug: 2004", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2004, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "bafacc36-02c6-408c-a3f5-8c2aa07a68db", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Bark)", - "GiftDropId": 2005, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Arbor Debug: 2005", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2005, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "u60IW1Gt10eC-8SlZmQUNQ", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Recasso)", - "GiftDropId": 2006, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Recasso Debug: 2006", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2006, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "dEmh0tniCkeYBY1EdD09jA", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Zombie)", - "GiftDropId": 2007, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Zombie Debug: 2007", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2007, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "jzgz_HrPAUqOeqx3uNXVUA", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Purple Plaid)", - "GiftDropId": 2008, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Plaid Debug: 2008", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2008, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "55a9c1e8-07e2-4457-86f2-75fd5e67b1f3", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Caution)", - "GiftDropId": 2009, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Caution Debug: 2009", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2009, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "83d7cca0-2c5d-41b2-a5b2-f79fd89f3037", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Pink)", - "GiftDropId": 2010, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun PINK Debug: 2010", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2010, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "bb36b722-16dc-4172-b61f-237dc1240040", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Jack-o'-lantern)", - "GiftDropId": 2011, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Jackolantern Debug: 2011", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2011, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "cd497ae2-6382-42f2-9f92-93d5141588c3", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Hearts)", - "GiftDropId": 2012, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Valentine Debug: 2012", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2012, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "pIRihZheSEW2Ld3VTLkB-g", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Purple Plaid)", - "GiftDropId": 2013, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Plaid Debug: 2013", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2013, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "gjuFgDp-LUWPi1mPCKyqbA", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Shamrock)", - "GiftDropId": 2014, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Shamrock Debug: 2014", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2014, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "63a867d7-ccea-4905-b6e0-e6dcfba06f9e", - "EquipmentPrefabName": "[Quest_SciFi_RailGun]", - "FriendlyName": "Laser Railgun Skin (Caution)", - "GiftDropId": 2015, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi RailGun Caution Debug: 2015", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2015, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "46977ca7-ee75-4e2a-b8aa-0763879f8a96", - "EquipmentPrefabName": "[Quest_SciFi_RailGun]", - "FriendlyName": "Laser Railgun Skin (Pink)", - "GiftDropId": 2016, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi RailGun PINK Debug: 2016", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2016, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "X9gTAbp0Sk6nadpTBseRrg", - "EquipmentPrefabName": "[Quest_SciFi_RailGun]", - "FriendlyName": "Laser Railgun Skin (Lifeguard)", - "GiftDropId": 2017, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi RailGun LifeGuard Debug: 2017", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2017, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "_flhynGnykyZL7F83B7rJQ", - "EquipmentPrefabName": "[Quest_SciFi_RailGun]", - "FriendlyName": "Laser Railgun Skin (Purple Plaid)", - "GiftDropId": 2018, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi RailGun Plaid Debug: 2018", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2018, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "c4d70545-cdf1-4fb1-924b-613de0327faf", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Vitton)", - "GiftDropId": 2019, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Vitton Debug: 2019", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2019, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6bba14be-f207-4933-b09f-f0fd3e28c10c", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Candy Cane)", - "GiftDropId": 2020, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow CandyCane Debug: 2020", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2020, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "1d09c8e4-78c2-49f9-acb7-8f0b3ff6a5ed", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Recasso)", - "GiftDropId": 2021, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Recasso Debug: 2021", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2021, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "MsFoMeUZ8Eq2qX9SrOtRPA", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Waves)", - "GiftDropId": 2022, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Waves Debug: 2022", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2022, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "T6PzFfg41UaQ7EAqts6gsw", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Crossbone)", - "GiftDropId": 2023, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Bone Debug: 2023", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2023, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "jHaoDSAtikyAI82lO53o9g", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Dryad Summer)", - "GiftDropId": 2024, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Dryad Debug: 2024", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2024, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ESQ0qOlgrkCc8MbUXGnF8A", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Green Plaid)", - "GiftDropId": 2025, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Plaid Debug: 2025", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2025, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "QEwDZYj_OEi5l86LBnuYGw", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Stone)", - "GiftDropId": 2026, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Rock Debug: 2026", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2026, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "VHFKZVhiRkylcxnxzCKUuw", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Caution)", - "GiftDropId": 2027, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Caution Debug: 2027", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2027, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Ys9UQ5b7fEyKxnaek-ihfQ", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Dryad Fall)", - "GiftDropId": 2028, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Dryad Fall Debug: 2028", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2028, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "CZAIad-ME0O0iIy77MRxBw", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Dryad Winter)", - "GiftDropId": 2029, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Winter Debug: 2029", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2029, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ych0ntYcK0eiq67bCLlbew", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Dryad Spring)", - "GiftDropId": 2030, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Spring Debug: 2030", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2030, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f5901f11-b315-4261-9474-2da207e4a229", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Fashion)", - "GiftDropId": 2031, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Vitton Debug: 2031", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2031, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "52c6a138-10c5-4aab-9c3b-04b50c9a2dc5", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Ghost)", - "GiftDropId": 2032, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Ghost Debug: 2032", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2032, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e738d936-0f75-423b-88bb-f626ffba573a", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Stone)", - "GiftDropId": 2033, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Rock Debug: 2033", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2033, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "XpxqrY6RYkafs-sd3Z0ZLw", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Pride)", - "GiftDropId": 2034, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Rainbow Debug: 2034", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2034, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "JBp7CxPhrUC5hnn2EISUFA", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Dryad Summer)", - "GiftDropId": 2035, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Dryad Debug: 2035", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2035, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "T8666vuehkObksBdVbla9g", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Green Plaid)", - "GiftDropId": 2036, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Plaid Debug: 2036", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2036, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "YajcGvBcTEaf_MjCbxOciw", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Caution)", - "GiftDropId": 2037, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Caution Debug: 2037", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2037, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "XKFuhM3zikyxTYtTzuPb_A", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Dryad Fall)", - "GiftDropId": 2038, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Dryad Fall Debug: 2038", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2038, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "uPwTBnfWwkWXuyAaAMqeQA", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Dryad Winter)", - "GiftDropId": 2039, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Winter Debug: 2039", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2039, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "gl_tlo_t7U-H308Omy13lw", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Dryad Spring)", - "GiftDropId": 2040, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Spring Debug: 2040", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2040, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "VYF9NGZBgU6TOo9ayjgBEQ", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Green)", - "GiftDropId": 2054, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Green Debug: 2054", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2054, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "WwtFcRluQkmnCI_qH75L_Q", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Orange)", - "GiftDropId": 2055, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Orange Debug: 2055", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2055, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "iRtlLKI-X0S9oYUWLenAKQ", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Purple)", - "GiftDropId": 2056, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Purple Debug: 2056", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2056, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "tvjYGeRdwEqnr9mf84WgcQ", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Red)", - "GiftDropId": 2057, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Red Debug: 2057", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2057, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Q7Tr_0DXAkOdr61UXiocow", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Yellow)", - "GiftDropId": 2058, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Yellow Debug: 2058", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2058, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "c1VRbmDGHUS7KiSgwj5prQ", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Pink)", - "GiftDropId": 2059, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Pink Debug: 2059", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2059, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6a6b0ecf-286d-4361-92ff-7027c440dc3c", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Plaid)", - "GiftDropId": 2063, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Plaid Debug: 2063", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2063, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d906709c-e08e-4273-8ba1-e072e0d25957", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Candy Cane)", - "GiftDropId": 2064, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintBallRifleScoped CandyCane Debug: 2064", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2064, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3rBevbIk1EusFnFaXAh3qA", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Gingerbread)", - "GiftDropId": 2065, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Gingerbread Debug: 2065", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2065, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "0dM2SfqGR0SmtO5ufTWfUQ", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Comic)", - "GiftDropId": 2067, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Comic Debug: 2067", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2067, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "btB2z7ybskSYrn9Nzhfhxg", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Wood)", - "GiftDropId": 2068, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Wood Debug: 2068", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2068, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "b_iiMMYayU-an7hOlCzPIA", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Caution)", - "GiftDropId": 2069, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Caution Debug: 2069", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2069, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d217ee4c-22f3-4f33-bf7c-9d4ee9c30e29", - "EquipmentPrefabName": "[Crossbow_Hunter]", - "FriendlyName": "Hunter's Crossbow Skin (Stone)", - "GiftDropId": 2070, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Hunter Rock Debug: 2070", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2070, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "cFMh54GoHEeHZEERSRR8kQ", - "EquipmentPrefabName": "[Crossbow_Hunter]", - "FriendlyName": "Hunter's Crossbow Skin (Green Plaid)", - "GiftDropId": 2071, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Hunter Plaid Debug: 2071", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2071, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "RRCvths6eUmAAr9hzGFT0g", - "EquipmentPrefabName": "[Crossbow_Hunter]", - "FriendlyName": "Hunter's Crossbow Skin (Caution)", - "GiftDropId": 2072, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Hunter Caution Debug: 2072", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2072, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "-X_Hm6dIekqoHTY2VMMLeA", - "EquipmentPrefabName": "[Crossbow_Hunter]", - "FriendlyName": "Hunter's Crossbow Skin (Shark)", - "GiftDropId": 2073, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow SharkHunter Debug: 2073", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2073, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "0ee04d78-5a17-4a38-ae67-b576a41fc200", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Extra)", - "GiftDropId": 2074, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Extra Debug: 2074", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2074, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "431567d2-4df2-43eb-b632-3d79aa7c013c", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Excalibur)", - "GiftDropId": 2075, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Gold Debug: 2075", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2075, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "uLNdhrrAC0ybxC2XkBnnVQ", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Gold)", - "GiftDropId": 20756767, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 20756767, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f03dee6a-79b8-4906-9abb-a821748d97a9", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Topaz)", - "GiftDropId": 2076, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Red Debug: 2076", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2076, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3e46fb2d-bb3f-42ed-83ef-f5716860725c", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Stone)", - "GiftDropId": 2077, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Rock Debug: 2077", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2077, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "eecdf81c-7ba2-40ba-9d6c-f461708cce16", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Comic) ", - "GiftDropId": 2078, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Comic Debug: 2078", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2078, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "SbEIObEmhkKQniANHqNekg", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Jack-o'-Lantern)", - "GiftDropId": 2079, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Pumpkin Debug: 2079", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2079, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Kitcy2AVB0-OdljiEAI2Pw", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Recasso)", - "GiftDropId": 2080, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Recasso Debug: 2080", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2080, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "K9TzHZPDwU-ewzLYkr_1cg", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Gingerbread) ", - "GiftDropId": 2081, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Gingerbread Debug: 2081", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2081, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "wioj1rR1lkCx7f-oiCHcOw", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Corn)", - "GiftDropId": 2082, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword CornCob Debug: 2082", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2082, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "m1JMjJYpSUiXj5897orm2Q", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Green Plaid)", - "GiftDropId": 2083, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Plaid Debug: 2083", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2083, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d97pbQMk9UWpEN0yoOE9Rg", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Caution)", - "GiftDropId": 2084, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Caution Debug: 2084", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2084, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "DRXoMS9phEG2fkasja7sEw", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Lava)", - "GiftDropId": 2085, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Lava Debug: 2085", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2085, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "993f8b81-cb2e-44e4-88a1-b841af1f0e69", - "EquipmentPrefabName": "[Grenade]", - "FriendlyName": "Paint Grenade (Pirate)", - "GiftDropId": 2086, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Grenade Pirate Debug: 2086", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2086, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e8e42ef6-9ab6-44f4-84d5-117154a4d13e", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Ghost)", - "GiftDropId": 2087, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Ghost Debug: 2087", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2087, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "yG6xFxkoS0iIDt7wEj5Hqw", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Witch)", - "GiftDropId": 2088, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Witch Star Debug: 2088", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2088, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3pE7zA-DjkqP1Ch7__-31w", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Jack Frost)", - "GiftDropId": 2089, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Ice Debug: 2089", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2089, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "m_otHTEKF0KQljsOc-JENg", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Stone)", - "GiftDropId": 2090, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Wood Debug: 2090", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2090, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "CyrdBvIbXUq_TsXFliWk1A", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Green Plaid)", - "GiftDropId": 2091, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Plaid Debug: 2091", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2091, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "vfzrRHn24E67BK8Bgy60xA", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Caution)", - "GiftDropId": 2092, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Caution Debug: 2092", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2092, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "QnLM4Qw-L0ml_mgReFweIw", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Trident)", - "GiftDropId": 2093, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Trident Debug: 2093", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2093, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "502f40c3-1c00-4c3f-bfc7-c897df8af37e", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Plaid)", - "GiftDropId": 2094, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Plaid Debug: 2094", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2094, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f34e6270-bcfa-42f2-80d5-69c1bbd34983", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Comic)", - "GiftDropId": 2095, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Comic Debug: 2095", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2095, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "8ZAwSDtXlkqlnBLOpfVTVg", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Gingerbread)", - "GiftDropId": 2096, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Gingerbread Debug: 2096", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2096, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3UmIhvqmkU-aWxFDFd4QDg", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Honey)", - "GiftDropId": 2097, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Honey Debug: 2097", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2097, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "pPpYY9j0Dku2gtbKoUOCCg", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Eggcellent)", - "GiftDropId": 2098, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher EasterEgg Debug: 2098", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2098, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "9gBl778RvUeSC8837Gurog", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Wood)", - "GiftDropId": 2099, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Wood Debug: 2099", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2099, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "tcMMGKcmhkuM82ISCZ-3AQ", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Caution)", - "GiftDropId": 2100, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Caution Debug: 2100", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2100, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6261a846-e4f8-4e6e-8aa0-68f38cd788d4", - "EquipmentPrefabName": "[DodgeballBall]", - "FriendlyName": "Dodgeball Skin (Comic)", - "GiftDropId": 2101, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DodgeballBall Comic Debug: 2101", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2101, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6ff63f8f-4bcc-4b69-8d89-8b886d19e239", - "EquipmentPrefabName": "[DodgeballBall]", - "FriendlyName": "Dodgeball Skin (Recasso)", - "GiftDropId": 2102, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DodgeballBall Recasso Debug: 2102", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2102, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f55dda45-c17e-4237-a638-9f326d306e7d", - "EquipmentPrefabName": "[DodgeballBall]", - "FriendlyName": "Dodgeball Skin (Goblin)", - "GiftDropId": 2103, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DodgeballBall Goblin Debug: 2103", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2103, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "lIpyvEMWqUyv41gTp3YZ1A", - "EquipmentPrefabName": "[DodgeballBall]", - "FriendlyName": "Dodgeball Skin (Jack-o'-Lantern)", - "GiftDropId": 2105, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DodgeballBall Pumpkin Debug: 2105", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2105, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "fae1abe3-6bfd-4407-b34e-e2c1b3b03032", - "EquipmentPrefabName": "[SoccerShield]", - "FriendlyName": "Soccer Shield Skin (Gingerbread)", - "GiftDropId": 2106, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "SoccerShield Gingerbread Debug: 2106", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2106, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "523e3615-4633-41a3-9b2d-17d3207a684b", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Camo)", - "GiftDropId": 2107, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Camo Debug: 2107", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2107, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6c3b26cd-b38e-492b-a124-759cbcec1396", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Camping)", - "GiftDropId": 2108, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Camping Pattern Debug: 2108", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2108, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "12b54ad2-3847-41db-9ed4-88e8dad63024", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Tiger)", - "GiftDropId": 2109, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Tiger Debug: 2109", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2109, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "5c848a04-f528-423b-8be1-4b5cd43a75c2", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Denim)", - "GiftDropId": 2110, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Denim Debug: 2110", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2110, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e93f5ab7-e9bf-4652-8a7c-2ae120f25f87", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Recasso)", - "GiftDropId": 2111, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Recasso Debug: 2111", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2111, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "w2NNBTTCVEah2WlP0JHezQ", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Hearts)", - "GiftDropId": 2112, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Valentine Debug: 2112", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2112, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "70uy5UJhhEy1aynKM4MAsQ", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Fall)", - "GiftDropId": 2113, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack FallLeaves Debug: 2113", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2113, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d218ae45-8534-4f96-b2ed-1cf281bc3578", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Gold)", - "GiftDropId": 2115, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Wood Debug: 2115", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2115, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e2844f84-ab44-4141-9a0a-bd5da7caa4f6", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Yellow OSnap)", - "GiftDropId": 2116, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Disposable Debug: 2116", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2116, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "1838fa61-de10-4e09-b24a-f5a1bc942600", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Green OSnap)", - "GiftDropId": 2117, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Green Debug: 2117", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2117, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "fSbzGxsjKE-cwtFFX6dJQw", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Sci-fi)", - "GiftDropId": 2118, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Carpet Debug: 2118", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2118, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ATGtNjai20miFwBUOVIMuw", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Two Tone)", - "GiftDropId": 2119, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera TwoTone Debug: 2119", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2119, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "znrJSCX_SkS-kIPqMERoDg", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Camping)", - "GiftDropId": 2120, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Camping Debug: 2120", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2120, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "g5u0weNLmkCLeUXFUVn74Q", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Comic)", - "GiftDropId": 2121, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Comic Debug: 2121", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2121, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "QQALCzCF-0ClDWqmmciHAQ", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Hearts)", - "GiftDropId": 2122, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Heart Debug: 2122", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2122, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "SkTa53OzM0u82YPuZAl9aw", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Caution)", - "GiftDropId": 2123, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Caution Debug: 2123", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2123, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "sE4_-ZVa2EC4MZfGGsExzQ", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Plaid)", - "GiftDropId": 2124, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Plaid Debug: 2124", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2124, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "KiVWBp5_J0qCLuizAJGcAg", - "EquipmentPrefabName": "[Sandbox_D4]", - "FriendlyName": "D4 (Pink)", - "GiftDropId": 2125, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D4 Pink Debug: 2125", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2125, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "x3Cv42hIkkaNIy7fHZiWYg", - "EquipmentPrefabName": "[Sandbox_D4]", - "FriendlyName": "D4 (Bone White)", - "GiftDropId": 2126, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D4 BoneWhite Debug: 2126", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2126, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "_2jxSTYSpEykZ_O91oDAzg", - "EquipmentPrefabName": "[Sandbox_D4]", - "FriendlyName": "D4 (Turquoise)", - "GiftDropId": 2127, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D4 Turquoise Debug: 2127", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2127, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "WxWaXY61mUuNe_f6SgECnA", - "EquipmentPrefabName": "[Sandbox_D4]", - "FriendlyName": "D4 (Pewter)", - "GiftDropId": 2128, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D4 Pewter Debug: 2128", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2128, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "TxIu8CUjykGDMr5RIJcNVQ", - "EquipmentPrefabName": "[Sandbox_D6]", - "FriendlyName": "D6 (Pink)", - "GiftDropId": 2129, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D6 Pink Debug: 2129", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2129, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Fn0gcj17c06tA9s98CKwAg", - "EquipmentPrefabName": "[Sandbox_D6]", - "FriendlyName": "D6 (Bone White)", - "GiftDropId": 2130, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D6 BoneWhite Debug: 2130", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2130, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "HnVo08F-zk-YeikERFa1Yw", - "EquipmentPrefabName": "[Sandbox_D6]", - "FriendlyName": "D6 (Turquoise)", - "GiftDropId": 2131, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D6 Turquoise Debug: 2131", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2131, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "5U_KiCi_90-eWucQ68VdZQ", - "EquipmentPrefabName": "[Sandbox_D6]", - "FriendlyName": "D6 (Pewter)", - "GiftDropId": 2132, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D6 Pewter Debug: 2132", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2132, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "AQXXckjNZ0uzPMTcP1C3Kg", - "EquipmentPrefabName": "[Sandbox_D8]", - "FriendlyName": "D8 (Pink)", - "GiftDropId": 2133, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D8 Pink Debug: 2133", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2133, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d_CbCG3DmUCtWGWYHioghg", - "EquipmentPrefabName": "[Sandbox_D8]", - "FriendlyName": "D8 (Bone White)", - "GiftDropId": 2134, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D8 BoneWhite Debug: 2134", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2134, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f45tTZp4KUextmAsX8X9Hw", - "EquipmentPrefabName": "[Sandbox_D8]", - "FriendlyName": "D8 (Turquoise)", - "GiftDropId": 2135, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D8 Turquoise Debug: 2135", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2135, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "77cRA0O4GUqd6nr9QLefQA", - "EquipmentPrefabName": "[Sandbox_D8]", - "FriendlyName": "D8 (Pewter)", - "GiftDropId": 2136, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D8 Pewter Debug: 2136", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2136, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ZM543HEyl0G6n7P5rDMEWw", - "EquipmentPrefabName": "[Sandbox_D10]", - "FriendlyName": "D10 (Pink)", - "GiftDropId": 2137, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D10 Pink Debug: 2137", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2137, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "GjQwBmNnK0ukv0hEEHK8tw", - "EquipmentPrefabName": "[Sandbox_D10]", - "FriendlyName": "D10 (Bone White)", - "GiftDropId": 2138, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D10 BoneWhite Debug: 2138", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2138, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "SnSOf-GZ2kastpF5KWxT-Q", - "EquipmentPrefabName": "[Sandbox_D10]", - "FriendlyName": "D10 (Turquoise)", - "GiftDropId": 2139, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D10 Turquoise Debug: 2139", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2139, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "I161QAym2kqPi5wXIHCt8A", - "EquipmentPrefabName": "[Sandbox_D10]", - "FriendlyName": "D10 (Pewter)", - "GiftDropId": 2140, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D10 Pewter Debug: 2140", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2140, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "EoV2ZoLR2UWY898p8j7qGQ", - "EquipmentPrefabName": "[Sandbox_D12]", - "FriendlyName": "D12 (Pink)", - "GiftDropId": 2141, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D12 Pink Debug: 2141", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2141, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "heFLfpPNd0-nhLOFpUCnpA", - "EquipmentPrefabName": "[Sandbox_D12]", - "FriendlyName": "D12 (Bone White)", - "GiftDropId": 2142, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D12 BoneWhite Debug: 2142", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2142, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ub6apg3zEUiCp3k81JjQGw", - "EquipmentPrefabName": "[Sandbox_D12]", - "FriendlyName": "D12 (Turquoise)", - "GiftDropId": 2143, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D12 Turquoise Debug: 2143", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2143, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "2gYYjbVGqkiOefY2xjOxiQ", - "EquipmentPrefabName": "[Sandbox_D12]", - "FriendlyName": "D12 (Pewter)", - "GiftDropId": 2144, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D12 Pewter Debug: 2144", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2144, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Des7txtX0EO-7NiooR0-ow", - "EquipmentPrefabName": "[Sandbox_D20]", - "FriendlyName": "D20 (Pink)", - "GiftDropId": 2145, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D20 Pink Debug: 2145", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2145, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "gXOOKrQEYE-FmS3uXWj1hA", - "EquipmentPrefabName": "[Sandbox_D20]", - "FriendlyName": "D20 (Bone White)", - "GiftDropId": 2146, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D20 BoneWhite Debug: 2146", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2146, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "DrG0ntsyPUSv8ra0m-Hhaw", - "EquipmentPrefabName": "[Sandbox_D20]", - "FriendlyName": "D20 (Turquoise)", - "GiftDropId": 2147, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D20 Turquoise Debug: 2147", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2147, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "H3vrSi45AU6lshChLnr19Q", - "EquipmentPrefabName": "[Sandbox_D20]", - "FriendlyName": "D20 (Pewter)", - "GiftDropId": 2148, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D20 Pewter Debug: 2148", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2148, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "c458a6ae-a1ea-468a-89b8-4c9a85cd3cde", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Caution)", - "GiftDropId": 2150, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle Caution Debug: 2150", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2150, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "m_qzPvDPF0KPhLd59wzr5A", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Fall)", - "GiftDropId": 2151, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle Fall Debug: 2151", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2151, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "996662ad-631d-4a81-8a8b-74ace4833279", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Pirate)", - "GiftDropId": 2152, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle Pirate Debug: 2152", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2152, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3aaef60d-142f-4a0a-bea3-f5d99ab62dd5", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Plaid)", - "GiftDropId": 2153, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle Plaid Debug: 2153", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2153, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "49d88b73-3c8a-4f4d-8a69-128fa5474e82", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (PS Plus)", - "GiftDropId": 2154, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle PSPLUS Debug: 2154", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2154, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "357fe573-fee7-467f-93a7-5e61afb024b8", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Wood)", - "GiftDropId": 2155, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle wood Debug: 2155", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2155, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "y_FesIT5jkmb61JIu7tfsw", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Wood)", - "GiftDropId": 2157, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower Wood Debug: 2157", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2157, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "GbHNkVbVgUCoirMhOGkSTA", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Plaid)", - "GiftDropId": 2158, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower Plaid Debug: 2158", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2158, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "qhhhJeHVx0KLnGJrAGIn9g", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Caution)", - "GiftDropId": 2159, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower Caution Debug: 2159", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2159, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "OFEdf4dRC0a3nHugXVOXnA", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Fireworks)", - "GiftDropId": 2160, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower Fireworks Debug: 2160", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2160, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "VTVy8cweC0K2ca1nTXMu0g", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Double Drencher)", - "GiftDropId": 2161, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower DoubleDrencher Debug: 2161", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2161, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ou23DX__T0qFPjAXC5WrOQ", - "EquipmentPrefabName": "[Bucket]", - "FriendlyName": "Bucket Skin (Fashion)", - "GiftDropId": 2164, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Bucket Fashion Debug: 2164", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2164, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, { "GiftDrop": { "AvatarItemDesc": "", @@ -45641,806 +1401,6 @@ ], "Type": 0 }, - { - "GiftDrop": { - "AvatarItemDesc": "0RUmjv2bL0ydbKU61dlqlg", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (PVPeach)", - "GiftDropId": 2554, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2554", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2554, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "H65ddsxAY0m2sccMrF48Aw", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Standee Sandy)", - "GiftDropId": 2555, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2555", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2555, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "yejur5BbR0mevbH-rzgXYA", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Recreational Raspberry)", - "GiftDropId": 2556, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2556", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2556, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Bjsgo9ddeUCk3zW1-DdJbw", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (H2Oasis)", - "GiftDropId": 2557, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2557", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2557, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8k_gZA_lrEyJxI19GrcAZg", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Mousebot Magenta)", - "GiftDropId": 2558, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2558", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2558, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1I8AD333gku-iOQlS6WWlw", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Bucket Orange)", - "GiftDropId": 2559, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2559", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2559, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "aziIarpSREmcT6vihduPwA", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Rebel Rose)", - "GiftDropId": 2560, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2560", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2560, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "yTdx1nVVtECU8Vh7EC8dGA", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Butterfly Blue)", - "GiftDropId": 2561, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2561", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2561, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "XCwNFMT1i0i9Q9gJYTLPUQ", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Cauldron Crimson)", - "GiftDropId": 2562, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2562", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2562, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "QmgjYhH_L0q58eF5SWeDhQ", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Gizmo Grape)", - "GiftDropId": 2563, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2563", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2563, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "53y1prYATU2drZDS-jpaqg", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Propulsion Purple)", - "GiftDropId": 2564, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2564", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2564, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TylV8M6zjUaadhxHPWAS-w", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Goblin Green)", - "GiftDropId": 2565, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2565", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2565, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "xyHGGFKNWEOTnXloDFahPQ", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (KREQ Red)", - "GiftDropId": 2566, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2566", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2566, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "LBz3a9520kiOOMMOwsTExg", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Frontier Forest)", - "GiftDropId": 2567, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2567", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2567, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "G129V_kVXkSLN2OG8EjSqQ", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Maker Mauve)", - "GiftDropId": 2568, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2568", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2568, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "_2QGtfHzuUSq0eyI84rImw", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Paula's Periwinkle)", - "GiftDropId": 2569, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2569", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2569, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "pQNfh-3DsEGWfiIls6Qf6g", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Pirate Gold)", - "GiftDropId": 2570, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2570", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2570, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "qp_vRXZQPU2rlx_IU1Vr8Q", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Lounge Lavender)", - "GiftDropId": 2571, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2571", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2571, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3ksu_FLaukeJ-YE90jb4Ow", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Ranger Roy-Al Blue)", - "GiftDropId": 2572, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2572", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2572, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3044adce-90c0-4f66-81f5-39c4fca86fdf,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "White Lasertag Glove", - "GiftDropId": 2764, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "laser the tag Debug: 2764", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2764, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, { "GiftDrop": { "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,,,", diff --git a/apps/econ/static/storefronts/sf3.json b/apps/econ/static/storefronts/sf3.json index 38d4a21..4267755 100644 --- a/apps/econ/static/storefronts/sf3.json +++ b/apps/econ/static/storefronts/sf3.json @@ -1,46447 +1,107967 @@ { - "NextUpdate": "2226-06-14T00:12:20.1324853Z", - "StoreItems": [ - { - "GiftDrop": { - "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Archer Quiver (Grey)", - "GiftDropId": 7, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 7", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 7, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Suit (White)", - "GiftDropId": 8, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 8", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 8, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,9GhnX4Pj4E-wxbPlD8GB-g,YSrGwXybGEqaqHNCS64qOA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Suit (Orange)", - "GiftDropId": 9, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 9", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 9, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Blue)", - "GiftDropId": 10, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 10", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 10, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,d6823e01-69f0-4f85-b94a-74894356a2cf,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Maroon)", - "GiftDropId": 11, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 11", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 11, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c5deba2a-6e35-4b13-8e94-8ba5457f39df,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Yellow)", - "GiftDropId": 12, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 12", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 12, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,e13cf33d-7588-4e2e-955e-f0a29d6380b7,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Brown)", - "GiftDropId": 13, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 13", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 13, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c9589974-c261-485e-b571-cb2f34fb178f,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Green)", - "GiftDropId": 14, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 14", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 14, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,da6d0ced-3d43-4878-a868-925f2ed6fd5b,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Babydoll Dress (Pink)", - "GiftDropId": 15, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 15", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 15, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Jersey (White, Blue)", - "GiftDropId": 16, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 16", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 16, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,e5de2e45-207c-46af-9a5e-eb01a0c621fe,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Jersey (White, Green)", - "GiftDropId": 17, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 17", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 17, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,de0a5a3a-8aff-4799-8269-9efa3aeb383a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Jersey (White, Red)", - "GiftDropId": 18, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 18", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 18, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Jersey (Green)", - "GiftDropId": 19, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 19", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 19, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Blue)", - "GiftDropId": 21, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 21", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 21, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,59a62fa3-9e15-463e-9bd5-3aecdf604c1b,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Black)", - "GiftDropId": 22, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 22", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 22, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,4effd67c-a52f-4b41-a5b0-04287f91a7bc,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Purple)", - "GiftDropId": 23, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 23", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 23, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,ojTIShRZHEOV1qQRfhwvTA,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Green)", - "GiftDropId": 24, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 24", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 24, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,se0-2ylLD0u6sqCVPkeP6A,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Red)", - "GiftDropId": 25, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 25", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 25, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,RU-B71GUF0WPduoSOI1XMg,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basketball Jersey (Yellow)", - "GiftDropId": 26, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 26", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 26, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eda29bce-5a07-4439-a2a7-cafa11e2ed62,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Belt", - "GiftDropId": 30, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 30", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 30, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4ee2133d-c419-4fbc-9117-746d756a250d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fanny Pack (Cosmic)", - "GiftDropId": 42, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 42", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 42, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Apron (Red)", - "GiftDropId": 43, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 43", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 43, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,HdwZhjrqxE6wuf68MnDhDw,f5z_jhdcqEGjo-1WUmldaw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Apron (Blue)", - "GiftDropId": 44, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 44", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 44, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,b7oobDcDtE-69fhM-5g5AQ,f5z_jhdcqEGjo-1WUmldaw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Apron (Yellow)", - "GiftDropId": 45, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 45", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 45, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,Blev_VFjRUysY_nymGWAVg,f5z_jhdcqEGjo-1WUmldaw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Apron (Green)", - "GiftDropId": 46, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 46", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 46, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Shirt (Orange)", - "GiftDropId": 47, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 47", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 47, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,c5884778-a87f-4612-9717-86fbb65d440f,1695608b-e9cc-4a03-b56d-0f09d2804379,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Shirt (Blue)", - "GiftDropId": 48, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 48", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 48, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,83522c12-9549-4d74-8c87-bae210bcd2bf,1695608b-e9cc-4a03-b56d-0f09d2804379,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Shirt (Black)", - "GiftDropId": 49, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 49", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 49, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,XNq4Cns4lEGydtktdsXlmQ,1695608b-e9cc-4a03-b56d-0f09d2804379,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Shirt (Navy)", - "GiftDropId": 50, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 50", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 50, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Navy)", - "GiftDropId": 51, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 51", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 51, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Purple)", - "GiftDropId": 52, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 52", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 52, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,faedf215-289b-40f7-90cc-f5b98517d133,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Blue)", - "GiftDropId": 53, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 53", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 53, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,1773d5d8-4714-4721-b30c-97e25d6f2a5a,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Red)", - "GiftDropId": 54, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 54", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 54, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,05K7dmjigkCByO2ufw9jtw,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Green)", - "GiftDropId": 55, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 55", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 55, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yOw1WqEN0EWqR9t53EsQpw,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (White)", - "GiftDropId": 56, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 56", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 56, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,qoVZuGa5NkOmyfikHjDhXw,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Dress (Black)", - "GiftDropId": 57, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 57", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 57, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowtie (Blue)", - "GiftDropId": 72, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 72", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 72, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowtie (White)", - "GiftDropId": 73, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 73", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 73, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowtie (Red)", - "GiftDropId": 74, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 74", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 74, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e69372eb-2fd8-4e17-a448-ee0be61a2c7a,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowtie (Black)", - "GiftDropId": 75, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 75", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 75, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e4IDo-fuH0C9YByzcX5k-A,qCIoeLQw-Uq-SKIetIgIpA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Bow Tie (Red)", - "GiftDropId": 77, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 77", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 77, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Blue)", - "GiftDropId": 80, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 80", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 80, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Grey)", - "GiftDropId": 81, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 81", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 81, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Red)", - "GiftDropId": 82, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 82", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 82, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (White)", - "GiftDropId": 83, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 83", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 83, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Yellow)", - "GiftDropId": 84, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 84", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 84, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,ojvIFCTpJkeegestF065wA,10fYSIBytk-yUjveDa407w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Collared Shirt (Plaid)", - "GiftDropId": 93, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 93", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 93, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,071d1bf3-86dc-4a31-b54a-e6579fab8649,d015cae7-a905-49e4-8823-6dec069689a6,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Collared Shirt (Purple)", - "GiftDropId": 95, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 95", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 95, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e139dd9-4757-43a8-8546-8da70dc17f0a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ranger Stache", - "GiftDropId": 105, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 105", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 105, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Orange)", - "GiftDropId": 106, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 106", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 106, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Dots, Red)", - "GiftDropId": 107, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 107", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 107, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Dots, Blue)", - "GiftDropId": 108, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 108", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 108, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Dots, White)", - "GiftDropId": 109, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 109", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 109, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Dots, Green)", - "GiftDropId": 112, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 112", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 112, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Red)", - "GiftDropId": 113, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 113", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 113, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Blue)", - "GiftDropId": 114, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 114", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 114, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, White)", - "GiftDropId": 115, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 115", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 115, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Purple)", - "GiftDropId": 116, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 116", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 116, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Black)\t", - "GiftDropId": 117, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 117", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 117, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Flowers, Green)", - "GiftDropId": 118, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 118", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 118, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Plaid, Red)", - "GiftDropId": 119, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 119", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 119, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Plaid, Blue)", - "GiftDropId": 120, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 120", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 120, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Plaid, White)", - "GiftDropId": 121, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 121", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 121, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bandana (Plaid, Green)", - "GiftDropId": 124, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 124", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 124, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cca7ab3d-5609-4700-92fd-3280fcea9b77,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1002, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Stache", - "GiftDropId": 125, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 125", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 125, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Brown)", - "GiftDropId": 126, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 126", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 126, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,192ba73d-6990-42da-8fe0-914c2a7181eb,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Black, Gold)", - "GiftDropId": 127, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 127", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 127, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Yellow)", - "GiftDropId": 128, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 128", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 128, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,624c85e5-095a-48b6-85fb-c9bbade19a8d,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Cherry)", - "GiftDropId": 129, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 129", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 129, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,K5vPqD3BrEuODRDzFdC6Hw,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Vest (Black, Silver)", - "GiftDropId": 131, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 131", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 131, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Red)", - "GiftDropId": 136, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 136", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 136, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,rcdwgNvO30Cvx2ycE1GfHw,JmFzNL5v_0q1p0bgoOlBpQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Black)", - "GiftDropId": 137, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 137", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 137, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9a366f8b-ea5b-49ae-a98c-f6b282e9bf14,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Gold Sequins)", - "GiftDropId": 138, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 138", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 138, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "73a119ab-d2c8-4da9-98b2-29edbb38e2c2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Red Sequins)", - "GiftDropId": 139, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 139", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 139, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "73c0e2ba-cba1-482a-89d5-1508997aceeb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Dress (Silver Sequins)", - "GiftDropId": 140, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 140", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 140, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jacket Dress (Red) ", - "GiftDropId": 141, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 141", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 141, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,v_5qFi-vAUSDd1fLNL7pvA,X0_GvGrZGkSP9Ub81CHgqQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jacket Dress (Green)", - "GiftDropId": 142, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 142", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 142, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,y5O8zRJy4kuhnXzATSWKew,X0_GvGrZGkSP9Ub81CHgqQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jacket Dress (Blue)", - "GiftDropId": 143, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 143", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 143, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Primrose)", - "GiftDropId": 144, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 144", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 144, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,IzdUC8x0F02i3BhPfEUOYw,CAqT_iLfQ0qQ-GbIdAsZow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Poppy)", - "GiftDropId": 146, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 146", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 146, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,nPUQvBsxu0mzhQg9YnWEgw,CAqT_iLfQ0qQ-GbIdAsZow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Paradise)", - "GiftDropId": 147, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 147", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 147, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wyKAZSZwT0u9cuSaQ_-IHg,vUgpsaXrO0ak7huhkHqlUA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Begonia)", - "GiftDropId": 148, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 148", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 148, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,_OM7UNZENEejgO5h7H1ztg,vUgpsaXrO0ak7huhkHqlUA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Dress (Dahlia)", - "GiftDropId": 149, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 149", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 149, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mermaid Dress", - "GiftDropId": 150, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 150", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 150, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Moons & Stars Dress ", - "GiftDropId": 151, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 151", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 151, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,OJYpuFw810Sg4bTw0XQf-g,NqU5Mw75BE6kPaD8t11Qow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Lodge)", - "GiftDropId": 153, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 153", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 153, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,t4gMAKp4L0WBaTGf_rtqFw,NqU5Mw75BE6kPaD8t11Qow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Yacht)", - "GiftDropId": 154, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 154", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 154, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rGMFdPKmK02_OvIIFYlAxA,NqU5Mw75BE6kPaD8t11Qow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Veranda)", - "GiftDropId": 155, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 155", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 155, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,wxvSDMommkenIl5hTY2fdQ,thwvF0DFRk-mV99ruqYFoQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Seafoam)", - "GiftDropId": 156, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 156", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 156, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,-sqfCQpzpUyjEShEXH9JYQ,thwvF0DFRk-mV99ruqYFoQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Sunrise)", - "GiftDropId": 157, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 157", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 157, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,sz-J7RjesE-ke3bKwumzZQ,mkNzDvyGfEijbdzAxKYrPQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Meadow)", - "GiftDropId": 159, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 159", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 159, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,QlZt51mdn0WuiqKoJaIRyA,mkNzDvyGfEijbdzAxKYrPQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Vineyard)", - "GiftDropId": 160, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 160", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 160, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,6PyJEQxyd0K9TPRnvt_86Q,mkNzDvyGfEijbdzAxKYrPQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sundress (Estate)", - "GiftDropId": 161, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 161", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 161, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hero Gal Armor", - "GiftDropId": 162, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 162", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 162, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Dress (Blue)", - "GiftDropId": 163, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 163", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 163, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,GQSpXmD0B02_gwzpq6StFA,ORmS9HkfoUeFuO4RhqcW7g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Dress (Red)", - "GiftDropId": 164, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 164", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 164, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,YvPeCbQS2UOcLjPfoIML_g,ORmS9HkfoUeFuO4RhqcW7g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Dress (Yellow)", - "GiftDropId": 165, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 165", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 165, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,zGOD45zNAk2i6P_zPsNPfg,ORmS9HkfoUeFuO4RhqcW7g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Server Dress (Green)", - "GiftDropId": 166, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 166", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 166, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wedding Dress", - "GiftDropId": 167, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 167", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 167, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (June Pearl)", - "GiftDropId": 168, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 168", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 168, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,46f7Ewe99E6tF2qFaMtQ0g,8IK1U23XlUOV-2ibVznkDQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (April Diamond)", - "GiftDropId": 170, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 170", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 170, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,R0f3hHGY9UqUEW4aR1fssA,KSqfmVTiGUKOKijwGDSwgQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (May Emerald)", - "GiftDropId": 171, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 171", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 171, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ZsWc8wRafEGl3B7cr6UkzA,ByIfwCtDwU-p9rEfqpjfGg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (August Peridot)", - "GiftDropId": 173, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 173", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 173, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,kQD41xK4dU6dI_6pRkP0qA,aSeusgYlPE6vOBu9Ua_dWA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (September Sapphire)", - "GiftDropId": 174, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 174", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 174, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ro4sD9txVE29_eT2jK-wEg,0YF5bACMsk2sN4tixbJbKw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (October Opal)", - "GiftDropId": 175, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 175", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 175, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,-YsxhNXLAk2qbeXMqwAqng,aNOhXS4nuUeqs0CVw6K7Hg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (November Citrine)", - "GiftDropId": 176, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 176", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 176, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,imOiYzABkUm9C5EVzvjXgg,0eZVIsv7wUyZ0ohLmF1jGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (December Turquoise)", - "GiftDropId": 177, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 177", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 177, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,FgLAEMh1e0GyHO8J8_xj5Q,iM-04HpG6k2N8n-P3XS22w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (January Garnet)", - "GiftDropId": 178, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 178", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 178, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,C9CZUwEZeUiuOue4CK4luA,gUxl7WNXlUqFYHZ9eGq1cg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Birthstone Earrings (February Amethyst)", - "GiftDropId": 179, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 179", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 179, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Goggles (Brown)", - "GiftDropId": 190, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 190", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 190, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,7b82c3c5-fd1f-45ec-b83f-e32668aa8dce,556f876a-70da-4104-b792-fca8ad67be0c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Goggles (Black)", - "GiftDropId": 191, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 191", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 191, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,23428ca9-be75-4146-b400-df01d1dadac9,556f876a-70da-4104-b792-fca8ad67be0c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Goggles (Tan)", - "GiftDropId": 192, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 192", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 192, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,qJGX62O_HUiZWN61NAc1Lg,556f876a-70da-4104-b792-fca8ad67be0c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Goggles (Red)", - "GiftDropId": 193, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 193", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 193, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "_qXaNbm4yEeyalo372QbvA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Biker Goggles", - "GiftDropId": 194, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 194", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 194, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TcgHS_0aPkehrBg7ytMOMQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Clubmaster Glasses", - "GiftDropId": 195, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 195", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 195, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d4f86b2b-0fa3-4264-9eac-cf15b62463bd,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Resistance Shades", - "GiftDropId": 200, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 200", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 200, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mirrored Glasses (Gold)", - "GiftDropId": 201, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 201", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 201, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,f841cdfa-45ba-4f09-a117-503eef34cb4b,9c55b609-b7dc-4070-a3ad-6351a0054a06,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mirrored Glasses (Silver)", - "GiftDropId": 202, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 202", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 202, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d57cf97e-b5d2-4e47-8231-a226a161f6e3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Stunt Shades (Pink)", - "GiftDropId": 204, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 204", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 204, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f684d86f-4a75-4a9a-bc0a-cf58f36c91c5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Stunt Shades (Yellow)", - "GiftDropId": 208, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 208", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 208, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Round Glasses", - "GiftDropId": 211, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 211", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 211, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "02a5b48c-abba-4385-967b-ba900424829e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Monocle", - "GiftDropId": 212, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 212", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 212, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Goggles (Orange)", - "GiftDropId": 217, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 217", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 217, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,DRS8xu3AqUOy2L0RKF3f7g,A7Y52vGIN0ijEKsWR_GQLg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Goggles (Blue)", - "GiftDropId": 218, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 218", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 218, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Goggles (Summit)", - "GiftDropId": 225, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 225", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 225, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,fXNkMWFMV0aXalK_y_8SHw,SSY8ZYMgaE2Bl4oFmMjKQA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Goggles (Chill)", - "GiftDropId": 226, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 226", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 226, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "22pyI3Kz-UullhcebC6DLQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snorkel", - "GiftDropId": 227, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 227", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 227, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snowy Owl Mask", - "GiftDropId": 228, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 228", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 228, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,HWAWBHI3zkGsh06he9CoPg,UAeSz-XeZUaZsk9FNlPX5w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snowy Owl Mask (Raven)", - "GiftDropId": 230, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 230", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 230, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "kghEf_iMKUSxPO-h5iRhSQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Classic Glasses", - "GiftDropId": 231, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 231", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 231, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Goggles", - "GiftDropId": 232, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 232", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 232, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,mZ2ASMrs80axStLp9g1enA,dGzmSibucEe7i1HD7lPcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Goggles (Silver)", - "GiftDropId": 233, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 233", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 233, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cbN5e-t_jEKa4hzir5JAxQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Shades", - "GiftDropId": 234, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 234", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 234, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "767684e7-0eec-4f6e-ad58-3d5ae715206e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Retro Sunglasses", - "GiftDropId": 235, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 235", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 235, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerleader Skirt (Pride)", - "GiftDropId": 236, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 236", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 236, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,eWf2c62cqEOkRukLzhl_wQ,KFq8d1VsO0KDqBWUj4qRFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerleader Skirt (Victory)", - "GiftDropId": 237, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 237", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 237, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Field Hockey Uniform (Red)", - "GiftDropId": 242, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 242", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 242, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,7b0d6661-e856-4ec1-ab90-d89c28a70826,1fede91a-434e-49a5-882e-e6db107112a8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Field Hockey Uniform (Blue)", - "GiftDropId": 243, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 243", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 243, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Firefighter Jacket", - "GiftDropId": 244, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 244", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 244, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Swimsuit (Yellow)", - "GiftDropId": 245, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 245", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 245, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,cf515c87-3c0a-4443-9f63-5ea1bdbaa61a,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Swimsuit (White)", - "GiftDropId": 246, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 246", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 246, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,27680277-aec1-41be-a476-9f51cf775580,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Swimsuit (Purple)", - "GiftDropId": 247, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 247", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 247, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,5a96ac4d-03c3-4214-9dcb-c2044ff28f2e,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Swimsuit (Grey)", - "GiftDropId": 248, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 248", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 248, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (White)", - "GiftDropId": 249, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 249", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 249, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,32dde6dc-e3dc-43ee-9b7c-987bc6778c17,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (Orange)", - "GiftDropId": 250, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 250", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 250, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,88c3ed05-ce41-4a9d-a4a7-8a428d240b3f,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (Black)", - "GiftDropId": 251, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 251", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 251, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,vMqhT19x302aYEo6E9HhOA,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (Red)", - "GiftDropId": 252, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 252", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 252, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,kCqthBeVvUKZA9b76kxuVQ,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Shoulder Pads (Gray)", - "GiftDropId": 255, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 255", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 255, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fur Coat (Brown)", - "GiftDropId": 257, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 257", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 257, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fur Coat (Black)", - "GiftDropId": 258, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 258", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 258, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,643b5f2d-0666-4869-b699-03742de34d16,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fur Coat (White)", - "GiftDropId": 259, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 259", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 259, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Goggles", - "GiftDropId": 260, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 260", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 260, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Space Visor (Nova)", - "GiftDropId": 271, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 271", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 271, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,SXG9rdEkxkOR31Nk0aTOww,uB4gFxfrh0W5OtkmZdFN1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Space Visor (Quasar)", - "GiftDropId": 272, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 272", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 272, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,FFIpxInE-EKbk2GY-pIkyg,uB4gFxfrh0W5OtkmZdFN1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Space Visor (Nebula)", - "GiftDropId": 273, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 273", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 273, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Square Glasses (Purple)", - "GiftDropId": 281, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 281", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 281, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Square Glasses (Red)", - "GiftDropId": 282, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 282", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 282, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,c5884778-a87f-4612-9717-86fbb65d440f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Square Glasses (Blue)", - "GiftDropId": 283, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 283", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 283, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sunglasses (Black)", - "GiftDropId": 284, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 284", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 284, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,0Ytm7G4_lkmZWPA_YfaIeQ,KfM7veOVlE-dNZmsbDNZBA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sunglasses (Orange)", - "GiftDropId": 286, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 286", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 286, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winner's Medal (Gold)", - "GiftDropId": 287, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 287", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 287, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,ERnUPsyT6kuEnIRZF8zPwg,wzt-5C_LjEmIQWUVPcYWhA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winner's Medal (Silver)", - "GiftDropId": 288, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 288", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 288, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,iaDL2im4lkCXUo0NWM-F3g,wzt-5C_LjEmIQWUVPcYWhA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winner's Medal (Bronze)", - "GiftDropId": 289, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 289", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 289, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d13a7a2-8213-40e6-90a6-efdd76a3fdcb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flowing Hair", - "GiftDropId": 302, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 302", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 302, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "BJ2XrGvl40iIl28IbTfbKg,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerful Ponytail", - "GiftDropId": 306, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 306", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 306, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fbdca48d-4ae6-41ad-8c33-b70a9e33fd77,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 11, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Action Hair", - "GiftDropId": 312, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 312", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 312, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "49397e16-1027-4286-9bc4-b59eae565ff0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Side Pony Hair", - "GiftDropId": 313, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 313", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 313, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e49d5d78-157e-4bc8-b878-ff7c4963fdc4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mohawk Hair", - "GiftDropId": 320, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 320", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 320, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2b7f4dae-51da-4af0-b009-12d6005c85c6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mullet Hair", - "GiftDropId": 321, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 321", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 321, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76a73866-5b60-424d-b751-a105e030f46e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Prankster Hair ", - "GiftDropId": 327, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 327", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 327, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ce250e13-8137-4f62-9e52-2b1cebe7d0ad,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Hawk Hair", - "GiftDropId": 329, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 329", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 329, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Blue)", - "GiftDropId": 340, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 340", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 340, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,ZpcM5H2Q1UCt0hh82nSu9w,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Pink)", - "GiftDropId": 341, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 341", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 341, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,7B7vpnMTfkGLcMdHCZ_kWA,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Red)", - "GiftDropId": 342, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 342", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 342, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,nO-YacKU1kmLjTFAAqNeYQ,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Yellow)", - "GiftDropId": 343, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 343", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 343, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,76CA_KCr806y1FA35m-YTg,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shutter Shades (Orange)", - "GiftDropId": 344, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 344", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 344, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,61VZkFjB402brzWm4UsftA,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Archer Hat (Grey)", - "GiftDropId": 357, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 357", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 357, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Helmet (White)", - "GiftDropId": 361, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 361", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 361, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,JFalLDUvm0aMm3wh1UVfVg,iQjkS1xYP0S63ltvKpkz5g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Helmet (Orange)", - "GiftDropId": 362, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 362", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 362, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Hat (Brown)", - "GiftDropId": 363, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 363", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 363, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,a8de80d3-286a-4fdc-bed2-75d52f8c0964,ff5ae41e-e446-4a96-8c11-49d85556fa81,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Hat (Black)", - "GiftDropId": 364, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 364", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 364, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,c6cf096c-f0cb-4500-80a0-bc2916b5a426,ff5ae41e-e446-4a96-8c11-49d85556fa81,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Hat (Tan)", - "GiftDropId": 365, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 365", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 365, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,FjnZ-D1hcESLOWL4Ukv7kw,ff5ae41e-e446-4a96-8c11-49d85556fa81,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Hat (Red)", - "GiftDropId": 366, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 366", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 366, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Folded Bandana (Red) ", - "GiftDropId": 367, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 367", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 367, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "07023692-97e1-4a65-a881-64ca6b4ae08e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbarian Helm ", - "GiftDropId": 368, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 368", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 368, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Hat (Red)", - "GiftDropId": 369, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 369", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 369, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,631c9015-2a00-47ea-bb35-465a2ddbca5d,83158223-e268-4036-8a6a-218a8430eb2c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Hat (Black)", - "GiftDropId": 370, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 370", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 370, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,7f9cb939-36a4-40da-8337-025e1d7bf8e5,83158223-e268-4036-8a6a-218a8430eb2c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Hat (Green)", - "GiftDropId": 371, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 371", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 371, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Goblins)", - "GiftDropId": 380, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 380", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 380, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Buckaneer)", - "GiftDropId": 381, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 381", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 381, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nZor-clxlkm8EO9Gco0Otg,r_GLekt6mkWxXw8zPPR8Mg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Cap (White, Red, Blue)", - "GiftDropId": 382, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 382", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 382, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,M8IYDK6aTUyn5mRhr51GtA,r_GLekt6mkWxXw8zPPR8Mg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Cap (White, Orange, Black)", - "GiftDropId": 383, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 383", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 383, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,yxWEn-oaYE2YvvnrTVV5WQ,r_GLekt6mkWxXw8zPPR8Mg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Cap (White, Turquoise, Grey)", - "GiftDropId": 384, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 384", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 384, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,XLYLo5qgW0eociGDgQ16PA,r_GLekt6mkWxXw8zPPR8Mg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Cap (White, Yellow, Blue)", - "GiftDropId": 385, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 385", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 385, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,Vk1n941ZgkKrhrL9mh18oA,lxmw7EbzsUuoy0roRy5McQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Minitron)", - "GiftDropId": 386, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 386", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 386, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,mdSSJyipq0KvjDNQ2NyUaw,LQheTa-EvUaAonSyoWNmXg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Holographic)", - "GiftDropId": 387, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 387", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 387, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (High Fashion)", - "GiftDropId": 388, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 388", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 388, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,cpTKHXjj0kulivZCKVQqiA,Mrf17aidXEeCF-fFURUUcQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Graphic Cap (Hyper Ramen)", - "GiftDropId": 391, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 391", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 391, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Helmet (Blue)", - "GiftDropId": 392, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 392", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 392, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,FVdDQFOMQ06teQm2ANDPng,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Helmet (Green)", - "GiftDropId": 393, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 393", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 393, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,FVdDQFOMQ06teQm2ANDPng,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Baseball Helmet (Red)", - "GiftDropId": 394, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 394", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 394, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Black)", - "GiftDropId": 395, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 395", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 395, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,-XSM6ZcSjE-vrWL7jyF4fQ,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Blue)", - "GiftDropId": 396, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 396", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 396, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,RL6HkufaJ0yubTpCGVI9eQ,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Green)", - "GiftDropId": 397, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 397", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 397, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,9tTuREkoQkW0ycqOjWXsiA,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (White)", - "GiftDropId": 398, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 398", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 398, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,MVkY4sU5BkGC4QhweRiyIA,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Orange)", - "GiftDropId": 399, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 399", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 399, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,ux9DQVSRyU-_5GA-t197OA,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Purple)", - "GiftDropId": 400, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 400", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 400, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,t2bByt5oUEG90PMMePCP6A,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Gray)", - "GiftDropId": 401, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 401", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 401, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,m7KXVnULz0iHvKfCFzFoyw,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Pink)", - "GiftDropId": 402, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 402", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 402, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,gT0WA7Y1H0my5uMlteIMMg,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Brimmed Beanie (Red)", - "GiftDropId": 403, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 403", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 403, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Tan)", - "GiftDropId": 404, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 404", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 404, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,58YffnGSUU6umcI1i0RvZw,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Purple)", - "GiftDropId": 405, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 405", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 405, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,c24f1DNZjEmqkt-FibKUjQ,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Brown)", - "GiftDropId": 406, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 406", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 406, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,SeVmHtrMS0y7gKCYkHcrOA,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Gray)", - "GiftDropId": 407, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 407", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 407, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,uDcJZClcFkiNdkEEh9IIyA,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Blue)", - "GiftDropId": 408, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 408", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 408, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,Iezz6gCFfkKdVcmPXIhunw,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Orange)", - "GiftDropId": 409, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 409", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 409, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,fLWfBSEO6U6aHrDm3nKFEQ,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Green)", - "GiftDropId": 410, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 410", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 410, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,F5vJzMfNB0Ob6Abjadho7Q,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Pink)", - "GiftDropId": 411, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 411", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 411, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,vbOUaJsGHEaSfQCivNcMWg,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (White)", - "GiftDropId": 412, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 412", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 412, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,wbFPXIg5gUK3QK6YycZexg,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Red)", - "GiftDropId": 413, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 413", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 413, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,_fBrHCkTKUe82QgxCyI-Kw,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beanie (Black)", - "GiftDropId": 414, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 414", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 414, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bear Hug Hat (White)", - "GiftDropId": 415, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 415", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 415, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,1919d319-6cce-4500-8766-15fed6a13fa8,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Veil (Gold)", - "GiftDropId": 420, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 420", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 420, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,lBe3yxuE40eBmTrnEHBqQQ,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Veil (Purple)", - "GiftDropId": 421, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 421", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 421, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,oZ8k0Qv3SkG-DkY0_dP7UA,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Veil (Teal)", - "GiftDropId": 422, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 422", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 422, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Blue)", - "GiftDropId": 423, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 423", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 423, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,7_n11PF4-0KqTZ9az23hqg,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Black)", - "GiftDropId": 424, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 424", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 424, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,TKbjEeTWfUyA1u4laoULMg,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Green)", - "GiftDropId": 425, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 425", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 425, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,JShcoWWPz0297HeEUJbDCQ,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Red)", - "GiftDropId": 426, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 426", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 426, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,_psc7WCgOk2JzRQwuFAqNw,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (White)", - "GiftDropId": 427, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 427", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 427, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,WeP_tPjUNUuGojXrVBOAIA,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beret (Purple)", - "GiftDropId": 428, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 428", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 428, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Helmet (Blue)", - "GiftDropId": 429, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 429", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 429, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,83522c12-9549-4d74-8c87-bae210bcd2bf,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Helmet (Black)", - "GiftDropId": 430, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 430", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 430, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Helmet (Orange)", - "GiftDropId": 431, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 431", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 431, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,XNq4Cns4lEGydtktdsXlmQ,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Helmet (Navy)", - "GiftDropId": 432, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 432", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 432, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "VQnoLstCyEGDPy1c38-GvA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Biker Helmet", - "GiftDropId": 433, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 433", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 433, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bog Monster Hood", - "GiftDropId": 434, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 434", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 434, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2fadddc1-babd-4cb3-8f5a-0e7c889c3785,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bounty Hunter Helmet", - "GiftDropId": 436, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 436", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 436, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow (Orange)", - "GiftDropId": 437, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 437", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 437, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,c9589974-c261-485e-b571-cb2f34fb178f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow (Green)", - "GiftDropId": 438, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 438", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 438, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow (Pink)", - "GiftDropId": 439, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 439", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 439, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowler Hat", - "GiftDropId": 441, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 441", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 441, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Helmet (Blue)", - "GiftDropId": 442, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 442", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 442, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Helmet (Red)", - "GiftDropId": 443, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 443", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 443, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,rzUd1IMTKUmW0HeMPSIOBQ,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Helmet (Green)", - "GiftDropId": 444, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 444", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 444, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (Black)", - "GiftDropId": 448, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 448", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 448, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,713781e5-ce47-41c6-a24f-94d42a565e30,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (Brown)", - "GiftDropId": 450, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 450", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 450, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (Grey)", - "GiftDropId": 451, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 451", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 451, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,c1e430c5-fd8d-4032-9e3f-8d87cc8784da,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (White)", - "GiftDropId": 452, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 452", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 452, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Ears (Alley)", - "GiftDropId": 453, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 453", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 453, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Hat (Calico)", - "GiftDropId": 454, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 454", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 454, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,V1M2-FXZSEG782d6D0AhUg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Hat (Burmese)", - "GiftDropId": 455, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 455", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 455, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,wNde5lsob06eQxEH2t-zUw,5KeLrnvaKEWnEiap1xzmjw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cat Hat (Tabby)", - "GiftDropId": 456, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 456", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 456, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chef Hat (White)", - "GiftDropId": 457, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 457", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 457, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,PR5dh2jf2kqGLO0lXgA69A,-lYK7LhYyEy6wqL1tIE9cg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chef Hat (Black)", - "GiftDropId": 458, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 458", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 458, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chicken Hat", - "GiftDropId": 459, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 459", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 459, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (Pink)", - "GiftDropId": 460, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 460", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 460, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,w9I-I0GWRE-3RgOUMMlHjg,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (Black)", - "GiftDropId": 461, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 461", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 461, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,bmi_S166JEGWhf_7woVL0A,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (Tan)", - "GiftDropId": 462, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 462", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 462, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,dSEiNUAZnUmErO5Vfv51zg,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (Teal)", - "GiftDropId": 463, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 463", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 463, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,jTG-jnKn0k-Etg_-4Gb9gw,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cloche (White)", - "GiftDropId": 464, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 464", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 464, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Hat (Black)", - "GiftDropId": 465, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 465", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 465, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,jwXdjDbEmkOFyKZHT_RYOw,YJGsYfwkik2lp7qWqXyXTw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Hat (Blue)", - "GiftDropId": 466, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 466", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 466, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,LdKaVAveokmp3qRwVBxnFA,YJGsYfwkik2lp7qWqXyXTw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Hat (Green)", - "GiftDropId": 467, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 467", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 467, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Brown)", - "GiftDropId": 469, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 469", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 469, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,624c85e5-095a-48b6-85fb-c9bbade19a8d,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Cherry)", - "GiftDropId": 470, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 470", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 470, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,192ba73d-6990-42da-8fe0-914c2a7181eb,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Black, Gold)", - "GiftDropId": 471, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 471", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 471, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Yellow)", - "GiftDropId": 472, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 472", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 472, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,teVKVbVEsEyqOSuRdqHQzA,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (White)", - "GiftDropId": 473, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 473", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 473, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,K5vPqD3BrEuODRDzFdC6Hw,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Hat (Black, Silver)", - "GiftDropId": 474, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 474", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 474, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3ae0eb82-13ce-43a2-bbc2-99a1cdbec63f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Crab Hat", - "GiftDropId": 476, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 476", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 476, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Helmet (Triton)", - "GiftDropId": 477, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 477", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 477, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,Su7kiW24d0KapNns96JoFQ,a3Er_BCApUiPtBaGkSH9LA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Helmet (Kraken)", - "GiftDropId": 478, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 478", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 478, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,CahBzgN3D0y46AQsvGC14A,a3Er_BCApUiPtBaGkSH9LA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Helmet (Leviathan)", - "GiftDropId": 479, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 479", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 479, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4abc2ac4-e60c-49b1-9ac8-4d4751ed78ae,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Dino Hat", - "GiftDropId": 481, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 481", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 481, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a5b747b8-c1a5-4bce-999f-e13dbe77bde6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Disco Ball Hat", - "GiftDropId": 482, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 482", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 482, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5ac25e5a-8c8e-445c-82a4-7272baec1eb5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Doctor's Head Mirror", - "GiftDropId": 483, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 483", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 483, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Hat (Red)", - "GiftDropId": 484, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 484", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 484, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,5a614f97-ef7f-4b70-afff-9ed837a86407,a8a91216-0fcc-461e-a682-95ee82509cce,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Hat (Green)", - "GiftDropId": 485, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 485", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 485, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,b444ed0a-eab5-4bd6-af34-d080de74a149,a8a91216-0fcc-461e-a682-95ee82509cce,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Hat (Orange)", - "GiftDropId": 486, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 486", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 486, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,8053b5e5-0f67-4329-a45d-1ee9fc830820,a8a91216-0fcc-461e-a682-95ee82509cce,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Hat (Yellow)", - "GiftDropId": 487, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 487", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 487, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1003, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Elven Crown", - "GiftDropId": 494, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 494", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 494, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Equestrian Helmet (Black)", - "GiftDropId": 495, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 495", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 495, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,55901f12-d5b5-4fa8-b4c8-e479689ee39d,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Equestrian Helmet (Blue)", - "GiftDropId": 496, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 496", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 496, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,4828b50c-95b6-466a-bb25-514891d78202,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Equestrian Helmet (Grey)", - "GiftDropId": 497, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 497", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 497, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,d6823e01-69f0-4f85-b94a-74894356a2cf,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Equestrian Helmet (Maroon)", - "GiftDropId": 498, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 498", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 498, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "16707919-756d-45ae-95fc-cfb6715b8ae6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Helm", - "GiftDropId": 500, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 500", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 500, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Helmet (White)", - "GiftDropId": 501, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 501", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 501, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,cea53c7f-24a9-4e3b-80b9-fbf95738f973,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Helmet (Orange)", - "GiftDropId": 502, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 502", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 502, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Helmet (Blue)", - "GiftDropId": 503, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 503", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 503, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,8c74ee27-3d56-401b-8a8c-7868a80770e8,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Helmet (Black)", - "GiftDropId": 504, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 504", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 504, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Firefighter Helmet (Red)", - "GiftDropId": 505, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 505", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 505, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,891d902e-3257-4a8c-9001-858046007997,c8ccb85e-52cd-4b3b-aadf-289819067125,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Firefighter Helmet (White)", - "GiftDropId": 506, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 506", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 506, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,4c26d1e7-2382-4478-b9c4-a068ed01a607,c8ccb85e-52cd-4b3b-aadf-289819067125,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Firefighter Helmet (Yellow)", - "GiftDropId": 507, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 507", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 507, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Headband (Silver)", - "GiftDropId": 508, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 508", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 508, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,565c17e0-496d-45bd-a2c3-564e118c06cc,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Headband (Black)", - "GiftDropId": 509, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 509", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 509, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Headband (Gold)", - "GiftDropId": 510, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 510", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 510, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Grey)", - "GiftDropId": 511, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 511", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 511, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Green)", - "GiftDropId": 512, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 512", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 512, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,0ba92db2-690a-44ce-92f4-130e9503b6c1,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Blue)", - "GiftDropId": 513, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 513", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 513, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9aYT6E9sd0OSavlmkhtkGw,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (White)", - "GiftDropId": 514, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 514", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 514, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,H-ypJNyVSka9as7rDFRZ_A,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Red)", - "GiftDropId": 515, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 515", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 515, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,-7uPJmO-wUu3cUhqo0caPg,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flat Cap (Tan)", - "GiftDropId": 516, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 516", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 516, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Headband (Pink)", - "GiftDropId": 517, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 517", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 517, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,c5884778-a87f-4612-9717-86fbb65d440f,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Headband (Blue)", - "GiftDropId": 518, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 518", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 518, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,827a1538-51bb-4fef-99c1-7f1bebd9866c,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Headband (Red)", - "GiftDropId": 519, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 519", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 519, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (White)", - "GiftDropId": 520, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 520", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 520, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,d8d490aa-7088-4163-9305-1441367f490c,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (Orange)", - "GiftDropId": 521, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 521", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 521, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,61ff7a02-50ff-49ea-b95e-c31b95a30c8e,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (Black)", - "GiftDropId": 522, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 522", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 522, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,X24EvVokeUqyDNdqevV2EA,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (Red)", - "GiftDropId": 523, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 523", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 523, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,UfhOpLemQ0ypYh7CIC3W1Q,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Football Helmet (Gray)", - "GiftDropId": 526, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 526", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 526, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fox Ears", - "GiftDropId": 528, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 528", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 528, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cec9cfac-a45b-4edb-b26d-7453cc2bfaf2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Froggy Headband", - "GiftDropId": 530, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 530", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 530, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "66f8f55d-cad4-4afb-93e8-b6bdf04b37b3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Green Sequins)", - "GiftDropId": 538, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 538", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 538, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d3b8bd7b-ca9a-4f5d-b115-3659dc294a03,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Top Hat (Green)", - "GiftDropId": 539, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 539", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 539, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Euf1h1qsZ02evDsyoHYbPQ,PZHohDVX0U2frX13N4KYDQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Helmet (Orange)", - "GiftDropId": 541, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 541", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 541, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,zlqLrGEa8E2WW9ey_szREA,PZHohDVX0U2frX13N4KYDQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Helmet (Pink)", - "GiftDropId": 544, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 544", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 544, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Orange)", - "GiftDropId": 546, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 546", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 546, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,8iZO162KNUiMC8l_z3OC_A,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Purple)", - "GiftDropId": 547, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 547", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 547, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,f_c50saStkaGJuhLjJ9lfA,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Black)", - "GiftDropId": 548, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 548", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 548, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,FUP4iRnoc0ikNmjrFD06lg,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Pink)", - "GiftDropId": 549, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 549", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 549, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,GmS0wKwzVEqdf3NoTMHG5A,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Teal, Polka Dot)", - "GiftDropId": 550, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 550", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 550, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,ZNKGkou_gU-1cxBFy7pDKw,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (Red, Polka Dot)", - "GiftDropId": 551, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 551", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 551, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,-Iqmonry4EKoqAULCKzRPA,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Big Head Bow (White, Polka Dot)", - "GiftDropId": 552, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 552", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 552, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Black)", - "GiftDropId": 572, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 572", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 572, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,viL4CPch2ECwG-RNaWcyZw,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Red)", - "GiftDropId": 573, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 573", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 573, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,8ANbOhNnO0yLQOCIBsDwfg,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Blue)", - "GiftDropId": 574, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 574", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 574, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,JWBK5v78Y0uRVEXlD-Qk6Q,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Orange)", - "GiftDropId": 576, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 576", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 576, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,hf0gkFVS8ESvceRsC3LAXQ,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Psy)", - "GiftDropId": 578, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 578", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 578, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,4scG_UBlzE-5DWRhSrtm6g,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Chillout)", - "GiftDropId": 579, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 579", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 579, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,nX7krD8e2km_ZlOLWcoxdQ,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Lounge)", - "GiftDropId": 581, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 581", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 581, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,ns5tIRishUOp-nYqLedcwA,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Techno)", - "GiftDropId": 582, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 582", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 582, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,I1J-xY4YNU2dB_od4P_7Dg,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Neon Heat)", - "GiftDropId": 584, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 584", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 584, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,2sf-FU4WckGBDWUkVz4z1g,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Neon Sky)", - "GiftDropId": 585, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 585", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 585, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,d9mwowRelE2lDKEA0UQMZQ,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Neon Dawn)", - "GiftDropId": 587, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 587", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 587, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Notes Headphones (Neon Void)", - "GiftDropId": 588, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 588", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 588, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Hair Clip (Red)", - "GiftDropId": 591, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 591", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 591, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,ce465d53-3807-423f-baa0-bdba2a75ceb3,65b89eae-347e-4eff-9ff3-7f25cace0125,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Hair Clip (White)", - "GiftDropId": 592, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 592", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 592, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,596097a8-d545-4256-959d-1d3cd96fc64c,65b89eae-347e-4eff-9ff3-7f25cace0125,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flower Hair Clip (Yellow)", - "GiftDropId": 593, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 593", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 593, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hockey Helmet (Black)", - "GiftDropId": 595, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 595", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 595, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,d5efaf80-7f34-4c9a-bc3a-b80b1ac70ace,7c4d447c-6594-4bd8-9510-12ad683ab116,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hockey Helmet (Red)", - "GiftDropId": 596, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 596", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 596, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7c4d447c-6594-4bd8-9510-12ad683ab116,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hockey Helmet (Blue)", - "GiftDropId": 597, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 597", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 597, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,qdA34j6p_UqphqChTCHEYQ,7c4d447c-6594-4bd8-9510-12ad683ab116,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hockey Helmet (Green)", - "GiftDropId": 598, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 598", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 598, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Hat (Mastermind)", - "GiftDropId": 600, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 600", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 600, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,RBRFHN8_rkuImbyDAfcHWw,BOB_mAXdA0u2khOH5qjqXQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Hat (Spy)", - "GiftDropId": 601, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 601", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 601, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,QJSPgq2KXEOWNynY8uqQvA,BOB_mAXdA0u2khOH5qjqXQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Hat (Rogue)", - "GiftDropId": 602, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 602", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 602, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,4RH8_Z1mqU-JIVvx31wOsA,BOB_mAXdA0u2khOH5qjqXQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Hat (Outlaw)", - "GiftDropId": 603, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 603", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 603, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,PMa9370LPEig_7pKwCceEQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Knight Helmet (Green)", - "GiftDropId": 614, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 614", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 614, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lacrosse Helmet (Purple)", - "GiftDropId": 615, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 615", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 615, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,e3454bc7-c88d-4958-8b81-db3fe5472a1e,7e688b30-ed13-4790-9ad8-c49885d1b7e8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lacrosse Helmet (Pink)", - "GiftDropId": 616, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 616", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 616, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (Black)", - "GiftDropId": 622, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 622", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 622, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,z-yaXP9ImkysLOGuCQiblw,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (Red)", - "GiftDropId": 623, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 623", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 623, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,SmRcrycMZ0qYNsHuQQOORA,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (Blue)", - "GiftDropId": 624, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 624", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 624, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,0svDrGn2NkmhUjC1VJUgRg,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (Green)", - "GiftDropId": 625, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 625", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 625, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,Aq4fjEW5gEyzetXMoG2tdQ,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Plastic Sunglasses (White)", - "GiftDropId": 626, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 626", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 626, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Primrose)", - "GiftDropId": 627, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 627", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 627, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,B9DJPqTeYUuPnPHRbKzEJA,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Poppy)", - "GiftDropId": 629, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 629", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 629, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,yXZO-donI0SHB9-TT0jUdw,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Paradise)", - "GiftDropId": 630, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 630", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 630, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,J5VsmblfWU2MeUjNo0fz1Q,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Begonia)", - "GiftDropId": 631, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 631", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 631, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,Asfe0ZRi50eryD5wlJzgzA,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Headband (Dahlia)", - "GiftDropId": 632, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 632", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 632, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Green)", - "GiftDropId": 633, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 633", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 633, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,916384ca-e209-42a0-bd64-c64f5a40b56f,96b36c98-cba1-4337-91dd-c74c00316f97,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Red)", - "GiftDropId": 634, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 634", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 634, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,96b36c98-cba1-4337-91dd-c74c00316f97,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Blue)", - "GiftDropId": 635, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 635", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 635, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,RA7cizxxYE6J8yV_0XwPxA,VSLcLM0TJU2kJU5gS4KZGw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Pouncing Tiger)", - "GiftDropId": 636, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 636", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 636, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,5_UnQ7vZ9E2T-EhJ7M-mQw,jL-LAsd03EeN1J-Zp8opew,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Mask (Green Lightning)", - "GiftDropId": 637, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 637", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 637, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "17f275d7-c5b1-4a0c-857f-8fb7a5d7c57a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Apocalypse Helmet", - "GiftDropId": 641, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 641", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 641, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Fuchsia)", - "GiftDropId": 642, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 642", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 642, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,lhfOKGDAgEKWucerCmH7Fg,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Teal)", - "GiftDropId": 643, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 643", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 643, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,kLv_wsbbGUmlfIUO1QLYLw,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Green)", - "GiftDropId": 644, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 644", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 644, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,f0pjsV0XMUWoE_z2kqOlSA,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Orange)", - "GiftDropId": 645, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 645", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 645, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,EDLxuGjEVEGdOPXDqyN-xA,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Tiara (Red)", - "GiftDropId": 646, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 646", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 646, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mermaid Crown", - "GiftDropId": 647, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 647", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 647, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (Black)", - "GiftDropId": 648, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 648", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 648, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,40283127-2ffc-4989-82f6-29c3381bf9e2,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (White)", - "GiftDropId": 649, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 649", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 649, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,1421caa9-9a0d-42c2-b847-1500ba2e483a,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (Brown)", - "GiftDropId": 650, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 650", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 650, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,390a476a-5545-48eb-955c-1bf1a16012bf,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (Grey)", - "GiftDropId": 651, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 651", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 651, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,PZx7Iae0pkiDaxT9t3-vgg,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Hat (Purple)", - "GiftDropId": 653, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 653", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 653, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Party Hat (Shindig)", - "GiftDropId": 656, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 656", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 656, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,RROvzwtshUGyRudVIBn8bw,MrrsmY0J0EKduH-f5wUj6g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Party Hat (Celebration)", - "GiftDropId": 658, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 658", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 658, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nightcap (Zonked)", - "GiftDropId": 660, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 660", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 660, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,2vawoQvJPUegnClmr2RNAQ,RR69IGV4j0Sd2xtmyN5wFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nightcap (Zzz)", - "GiftDropId": 661, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 661", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 661, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,kIcd-yEnsEqxoeogquvmRw,RR69IGV4j0Sd2xtmyN5wFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nightcap (Dozy)", - "GiftDropId": 662, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 662", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 662, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,qHyKfCsrbUqSWomjLXf7Hw,RR69IGV4j0Sd2xtmyN5wFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nightcap (Sandman)", - "GiftDropId": 663, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 663", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 663, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Regal Crown (Gold)", - "GiftDropId": 674, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 674", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 674, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zljmtj5WqUaRvB3XQTgJXg,XFuSiGupZ02Fut1Dxum_Iw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Regal Crown (White)", - "GiftDropId": 675, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 675", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 675, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rmq1AOQvtUGOHvbPUximwg,XFuSiGupZ02Fut1Dxum_Iw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Regal Crown (Black)", - "GiftDropId": 676, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 676", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 676, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rain Hat (Yellow)", - "GiftDropId": 678, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 678", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 678, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,v3af60p1Q02NpdCqIRO9lw,1hVOI7IuY0mKvtr2PZXLww,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rain Hat (Red)", - "GiftDropId": 679, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 679", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 679, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,d0bb468c-b78f-4e80-916d-65fec3ec0010,0272eb19-fc0e-4ad6-8db9-cc0cda2528b0,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ranger Hat (Green)", - "GiftDropId": 682, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 682", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 682, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f61eb9cc-c0d3-4b45-a7b7-b6c69e5e6db4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Red Panda Hat", - "GiftDropId": 683, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 683", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 683, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,W-xMu8n2CUuHSXfHvEL4yw,-apO3Y7om0GKhC4V_hVYdQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1003, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Robo Logo Cap (Pink)", - "GiftDropId": 685, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 685", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 685, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Crown (Gold)", - "GiftDropId": 686, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 686", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 686, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,wCe2yC2U1kyYvPd8Z1rX2w,hCeaYHy1TE2s6rTPxAQP9A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Crown (White)", - "GiftDropId": 688, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 688", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 688, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,QkfA71-1z0qOiZAVrbzhtA,hCeaYHy1TE2s6rTPxAQP9A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Crown (Black)", - "GiftDropId": 689, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 689", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 689, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Hat (Tan)", - "GiftDropId": 690, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 690", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 690, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,0dabda0d-842c-4d39-a6b9-a8ca3ec20825,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Hat (Green)", - "GiftDropId": 691, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 691", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 691, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "380a5e35-b4d0-4119-9721-8ce4c0840fbd,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Starship Helm", - "GiftDropId": 698, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 698", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 698, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (White, Blue, Gold)", - "GiftDropId": 703, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 703", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 703, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,f5403c89-9769-479b-8a05-c71607f9b189,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (White, Black, Gold)", - "GiftDropId": 704, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 704", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 704, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,36e63797-5a42-4779-a5cc-ef5c2e7d17d4,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (White, Black, Silver)", - "GiftDropId": 705, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 705", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 705, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,70112887-dc8d-49d5-96ed-0845204e0b58,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (Black, Black, Gold)", - "GiftDropId": 706, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 706", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 706, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,2738ab5f-8c94-46b3-bac6-4a8111c41c21,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Hat (Pink, Black, Pink)", - "GiftDropId": 707, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 707", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 707, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shark Hat", - "GiftDropId": 710, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": "Doo doo doo doo doo doo Debug: 710", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 710, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Cap (Tan)", - "GiftDropId": 711, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 711", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 711, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,fEPwvuJCWkGBe4IekXpmLw,axPBGoqorEe77Oqqjfzb5w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Cap (Black)", - "GiftDropId": 712, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 712", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 712, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,MQOxmUk-mUG-Ee9m9nX31Q,axPBGoqorEe77Oqqjfzb5w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Cap (Grey)", - "GiftDropId": 713, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 713", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 713, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Ear Muffs (Summit)", - "GiftDropId": 714, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 714", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 714, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,KwCEye0nsESFs-yj4h9sjQ,c_t9XDbn-Eqml1O-wC5zJQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Ear Muffs (Chill)", - "GiftDropId": 715, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 715", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 715, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Small Brim Hat (Purple)", - "GiftDropId": 716, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 716", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 716, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,67fc9269-8dd8-4d6f-b594-c77e716f2482,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Small Brim Hat (Green)", - "GiftDropId": 717, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 717", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 717, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Small Brim Hat (Black)", - "GiftDropId": 718, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 718", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 718, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,d6823e01-69f0-4f85-b94a-74894356a2cf,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Small Brim Hat (Maroon)", - "GiftDropId": 719, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 719", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 719, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Hat (Red)", - "GiftDropId": 720, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 720", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 720, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,XFCpIdeDXUqeYCIgh4fGtg,sV_ByCug30G1Gw-77KUe1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Hat (Blue)", - "GiftDropId": 721, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 721", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 721, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,oKxmH-1s2EyIDkZoOQSQQw,sV_ByCug30G1Gw-77KUe1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Hat (Green)", - "GiftDropId": 722, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 722", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 722, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,MxnAq_XOw0uTzQ8IIxqb_Q,sV_ByCug30G1Gw-77KUe1Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Hat (Yellow)", - "GiftDropId": 723, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 723", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 723, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Hat", - "GiftDropId": 733, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 733", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 733, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,YSnoHFmJDUa_XCK6JMMh2g,VZyHWGKNJEGSxDT2GO3ebA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Hat (Grey)", - "GiftDropId": 735, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 735", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 735, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Squid Hat", - "GiftDropId": 736, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 736", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 736, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "34f45c5b-fea7-40b4-add7-bc7a37000ab5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Star Captain Hat ", - "GiftDropId": 737, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 737", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 737, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Topper", - "GiftDropId": 738, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 738", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 738, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,Jy2TN1KBTEeoVehy_x32Ng,fXnd_COSzUeznwe7P4ZYRg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Topper (Silver)", - "GiftDropId": 740, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 740", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 740, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Hat", - "GiftDropId": 741, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 741", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 741, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,ZUMIXcyOpEGiHgslbHQbwA,Uhw5NBQy-EOIiCWiZFiL7g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Hat (Silver)", - "GiftDropId": 743, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 743", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 743, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sun Hat", - "GiftDropId": 744, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 744", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 744, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hero Crown", - "GiftDropId": 745, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 745", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 745, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "00f0b914-aa22-4d14-9af1-996e1af61f4d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tiny Crown", - "GiftDropId": 746, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 746", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 746, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Top Hat (Black, Red)", - "GiftDropId": 747, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 747", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 747, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,DzgN67HoikexE2rTlZLdYQ,vm1ESK9ls0SaxSwHplNALQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Top Hat (White)", - "GiftDropId": 749, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 749", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 749, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,xeK_acj2hE-sYGhsMRwjhw,HwhHShudGkGjXagJxCN2uA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Top Hat (Patchwork)", - "GiftDropId": 750, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 750", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 750, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Hat", - "GiftDropId": 753, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 753", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 753, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,LEUQnDz-k0m-hY-AX3Z9Sg,znNiHfNdTE-szOIAnIWFQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Paradise)", - "GiftDropId": 755, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 755", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 755, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,cSFt9MWLj06CDzIzATqrTg,znNiHfNdTE-szOIAnIWFQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Poppy)", - "GiftDropId": 756, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 756", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 756, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,B6qNcZQ770eJel13RskuIg,sIP83lqv3kG31TH5Rw4gqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Begonia)", - "GiftDropId": 757, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 757", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 757, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,p3g8YAOhTUKAiE-Wh-X-aA,sIP83lqv3kG31TH5Rw4gqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Dahlia)", - "GiftDropId": 758, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 758", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 758, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,SqHAYcqBXU2PtF2urWGruQ,sIP83lqv3kG31TH5Rw4gqg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Hat (Primrose)", - "GiftDropId": 759, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 759", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 759, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Pu_1I6Zq-0G1HBMHa5MrKg,Cjy-bE0PikWLCRrL4U2NGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tourist Hat (Green)", - "GiftDropId": 760, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 760", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 760, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,aiBfwCNwpUyJ0rYKCMa7qw,Cjy-bE0PikWLCRrL4U2NGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Hat (Yellow)", - "GiftDropId": 762, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 762", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 762, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Hat (Brown)", - "GiftDropId": 763, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 763", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 763, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,CoSVCyrI-0qg-EkqB2R0hg,JO9lJOQSREWbPyDBZH_cyg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Hat (Black)", - "GiftDropId": 764, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 764", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 764, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Hat (Pickup)", - "GiftDropId": 765, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 765", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 765, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,lDXambcP60CeY2C8qeGDFw,uiAwVt3HK0mRVtWp9B-gTg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Hat (Flatbed)", - "GiftDropId": 766, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 766", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 766, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Unicorn Horn (Spirit)", - "GiftDropId": 774, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 774", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 774, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,FNe9LkWJMUeC3frYJMyEaQ,nW_fBsuZA0OfIjTMXm6ZCA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Unicorn Horn (Harmony)", - "GiftDropId": 775, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 775", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 775, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,mudt-Z5-5USdnIq-xaDgOw,nW_fBsuZA0OfIjTMXm6ZCA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Unicorn Horn (Joy)", - "GiftDropId": 776, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 776", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 776, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c87239ca-a255-4b13-bbc5-1b38236fb4cc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Viking Helmet", - "GiftDropId": 777, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 777", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 777, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Visor", - "GiftDropId": 778, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 778", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 778, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Headphones", - "GiftDropId": 780, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 780", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 780, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,tXhgU1o_wkaNQ-7P3KXidQ,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Hat (Kingfisher)", - "GiftDropId": 789, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 789", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 789, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,nn86ATWxekWdIGlPePPgGQ,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Hat (Vintage)", - "GiftDropId": 790, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 790", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 790, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,oxi26T5a4U6L73pF-Pgrhg,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Hat (Grackle)", - "GiftDropId": 792, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 792", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 792, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,6547pqf6vUm2L89AG6D91A,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winged Hat (Raven)", - "GiftDropId": 793, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 793", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 793, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,aBQ3R9boek-mYeSYSNvDbQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Witch Hunter Hat (Blue)", - "GiftDropId": 809, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 809", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 809, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3KmqVuMQkCYK6sVTMOTOA,abdf525b-b871-41be-a1c8-810f49740ad4,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wizard Hat (Purple)", - "GiftDropId": 816, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 816", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 816, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jazzercise Shirt (Teal)", - "GiftDropId": 822, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 822", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 822, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,3b2cfc85-4e2a-4e0d-b738-c296ae8692f8,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jazzercise Shirt (Pink)", - "GiftDropId": 823, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 823", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 823, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,78eb0969-f246-4cac-acd6-295df7c092e4,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jazzercise Shirt (White)", - "GiftDropId": 824, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 824", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 824, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,PMa9370LPEig_7pKwCceEQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Knight Cape (Green)", - "GiftDropId": 832, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 832", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 832, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Red)", - "GiftDropId": 837, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 837", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 837, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,_VfdBTi7PU276qzsYKayow,qSsEcadcm0-twR1TvVcgYQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Pouncing Tiger)", - "GiftDropId": 838, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 838", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 838, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Dtis2HpVzkelZb6M9mW5TQ,iqGv6iRJ-UGbofv8-aHKVA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Green Lightning)", - "GiftDropId": 839, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 839", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 839, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,xNjX_6-aREm0cYZObVLiAg,OE-PtL0-0kWcJPwn1wvuVg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Blue)", - "GiftDropId": 840, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 840", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 840, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Kcyp8sv0202Puym1Wf86xg,OE-PtL0-0kWcJPwn1wvuVg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Cape (Green)", - "GiftDropId": 841, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 841", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 841, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Green)", - "GiftDropId": 843, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 843", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 843, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,916384ca-e209-42a0-bd64-c64f5a40b56f,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Red)", - "GiftDropId": 844, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 844", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 844, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Blue)", - "GiftDropId": 845, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 845", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 845, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,TLrw3oncCE2MeuVifXSWTg,-_ViYCHHRUip7oN_AnH0Og,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Pouncing Tiger)", - "GiftDropId": 846, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 846", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 846, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,7Jx8mrxoi0aQtZEb03CdRA,-IgxYllxkEyr7V1gosWXUA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luchador Singlet (Green Lightning)", - "GiftDropId": 847, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 847", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 847, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerleader Sweater (Pride)", - "GiftDropId": 848, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 848", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 848, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,6secgNPvmUyFnI3NC5dIYw,5V_1JEDrRUa1UPKhtrSB2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheerleader Sweater (Victory)", - "GiftDropId": 849, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 849", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 849, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7553d851-1986-4325-870d-e425dfb7d007,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Farmer Beard", - "GiftDropId": 892, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 892", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 892, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6b337a35-95d9-4b3a-9891-d9fbb06262aa,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Curly Mustache", - "GiftDropId": 894, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 894", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 894, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cfe276b9-1bdf-4c41-9e86-1a0215c6c5a1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ascot", - "GiftDropId": 898, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 898", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 898, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Backsword (Leathered Iron)", - "GiftDropId": 899, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 899", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 899, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,LIgagNf4gk68EYQdlDruxg,rL9p5JY83Eyxj00Dieg7oA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basic Belt (Red)", - "GiftDropId": 901, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": " Debug: 901", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 901, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,6fmUy748hU2dgwgaijSkUA,rL9p5JY83Eyxj00Dieg7oA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basic Belt (Green)", - "GiftDropId": 904, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": " Debug: 904", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 904, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,buuNFd8sK0eap78TL1gMNQ,-UFHTNvJs0CGDStb0PFkbQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Basic Belt (Blue)", - "GiftDropId": 905, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": " Debug: 905", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 905, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,SDbpnjVYmEGQneK5fhZ0Cw,FwjsTo0nb0uNU6l8XvllNA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Leather Necklace (Red)", - "GiftDropId": 907, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 907", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 907, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,uwoWPY4YjEmZSQcNCrx1Gg,FwjsTo0nb0uNU6l8XvllNA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Leather Necklace (Green)", - "GiftDropId": 910, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 910", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 910, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,COZbkLDc20mdUlWSkqMX-w,FwjsTo0nb0uNU6l8XvllNA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Leather Necklace (Blue)", - "GiftDropId": 911, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 911", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 911, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bounty Hunter Cape", - "GiftDropId": 916, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 916", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 916, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow Tie (Gold Sequins)", - "GiftDropId": 917, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 917", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 917, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,Wm30oV5BtEuFQZFk3dPK_w,0R3Mh96tS0631EZYs03dmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow Tie (Red Sequins)", - "GiftDropId": 918, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 918", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 918, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "988e4069-4341-428b-bbf5-023309891385,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow Tie (Silver Sequins)", - "GiftDropId": 919, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 919", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 919, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Butterfly Wings (Cool Mint)", - "GiftDropId": 920, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 920", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 920, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Butterfly Wings (Monarch)", - "GiftDropId": 922, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 922", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 922, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "27c2eb7f-9fac-4c42-90c7-44e7a33d5303,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Butterfly Wings (The Blue One)", - "GiftDropId": 926, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 926", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 926, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Tank (Triton)", - "GiftDropId": 927, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 927", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 927, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,Su7kiW24d0KapNns96JoFQ,ZpyoWbO6GkGglXlMuYUARw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Tank (Kraken)", - "GiftDropId": 928, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 928", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 928, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,CahBzgN3D0y46AQsvGC14A,ZpyoWbO6GkGglXlMuYUARw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Tank (Leviathan)", - "GiftDropId": 929, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 929", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 929, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "587ca2bb-dd42-42bf-833f-4e2a97349866,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Doctor's Stethoscope", - "GiftDropId": 931, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 931", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 931, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Dragon Wings ", - "GiftDropId": 934, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 934", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 934, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Elven Cape", - "GiftDropId": 936, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 936", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 936, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fancy Cape (Grey)", - "GiftDropId": 937, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 937", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 937, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,crl8VlZ59kGxG01noGEWmA,EckOEU0mJkGIVDvYoKBN9g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fancy Cape (Gilded)", - "GiftDropId": 938, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 938", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 938, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fanny Pack", - "GiftDropId": 939, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 939", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 939, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Felted Shawl", - "GiftDropId": 941, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 941", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 941, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "86af3a97-18d8-4dda-a2f2-cfd3b4224254,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bow Tie (Green Sequins)", - "GiftDropId": 945, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 945", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 945, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Apron (Tan)", - "GiftDropId": 946, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 946", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 946, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,eV3Nv6SWS0yl3f-fgjPb-w,t-ZEWJCgFEyGP2PjNblQMA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Apron (Denim)", - "GiftDropId": 947, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 947", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 947, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,Lxx3q6JRnUW_cPG_kGG4ag,t-ZEWJCgFEyGP2PjNblQMA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Apron (White)", - "GiftDropId": 948, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 948", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 948, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,vek37vRROUKnSJKVP0CH6w,t-ZEWJCgFEyGP2PjNblQMA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Apron (Charcoal)", - "GiftDropId": 949, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 949", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 949, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "affdc9ad-8312-4421-8f56-e35dfdaeb63a,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lifeguard Whistle", - "GiftDropId": 953, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 953", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 953, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e307eca-0850-4d85-8cc1-f5c176bfa7e9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Apocalypse Scarf", - "GiftDropId": 954, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 954", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 954, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Fuchsia)", - "GiftDropId": 955, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 955", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 955, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,Ot9EG-FfKEauT0u6pSZuWg,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Teal)", - "GiftDropId": 956, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 956", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 956, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,i3rD_hnQG0a-5f6Ve4AfWg,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Pink)", - "GiftDropId": 957, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 957", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 957, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,S9uymuvraUCOM8gmB7bnEA,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Dark Blue)", - "GiftDropId": 958, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 958", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 958, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,_uh3kj6hKUyBKOSR3R8dog,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Purple)", - "GiftDropId": 959, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 959", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 959, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,kaRBW1u3dkODGjPMePW6Uw,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Bow (Rose)", - "GiftDropId": 960, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 960", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 960, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Shell Necklace", - "GiftDropId": 964, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 964", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 964, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5e9bbda6-d681-42b1-9cc4-5758acf34bc0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Necklace (Gold)", - "GiftDropId": 965, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 965", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 965, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b95678aa-351a-4929-8a0e-0274a183eb18,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Necklace (Silver)", - "GiftDropId": 966, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 966", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 966, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Pearl Necklace (Freshwater)", - "GiftDropId": 968, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 968", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 968, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,sqPMH0LhLkeG-4XkxpU-sw,URWHffwjGUKgXeV01upePA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Pearl Necklace (Saltwater)", - "GiftDropId": 969, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 969", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 969, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4c673a35-c10f-4a8c-b8e0-96a50fe5b97f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Pegasus Wings", - "GiftDropId": 970, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 970", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 970, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Red)", - "GiftDropId": 979, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 979", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 979, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,mqdncbYcuUSGFvFqEU0z4A,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Purple)", - "GiftDropId": 981, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 981", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 981, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,MbusQ9bte0i9zirlxtNkSQ,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Blue)", - "GiftDropId": 982, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 982", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 982, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,_9QlnTPXuEO5OQ3H0CwFkA,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Green)", - "GiftDropId": 983, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 983", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 983, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,cKLBS6pbf0SFuavWyeZ7GA,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Black)", - "GiftDropId": 984, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 984", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 984, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,DZyW-gOG9U-QLGOMFBhOoA,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Cape (Pink)", - "GiftDropId": 985, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 985", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 985, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f47f81e7-fcdd-4687-9b99-013147bef30f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Belt Sash", - "GiftDropId": 987, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 987", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 987, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Tank (Orange)", - "GiftDropId": 995, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 995", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 995, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,V_duN2oWaUmmao1xHhzCJA,Uvarm_CwTUWWQYZvzI8OaQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Tank (Blue)", - "GiftDropId": 996, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 996", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 996, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snowy Owl Cape", - "GiftDropId": 999, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 999", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 999, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,8M72ydR_uUSsli43PH2Eyw,wQxO4xmXCUGeC9ZHfDNGTw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Snowy Owl Cape (Raven)", - "GiftDropId": 1001, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1001", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1001, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Poncho", - "GiftDropId": 1002, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1002", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1002, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,EmTrJKm8cUy8_BHAvP8Meg,kxkqq5UA_kCM6lFsFe3dvw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Poncho (Grey)", - "GiftDropId": 1004, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1004", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1004, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Pauldron", - "GiftDropId": 1006, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1006", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1006, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,rSzG7s1ocUmx9_VrJLOcHQ,ISycihytUUyoypVb-kXN_Q,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Pauldron (Silver)", - "GiftDropId": 1007, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1007", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1007, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Satchel", - "GiftDropId": 1008, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1008", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1008, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,bH3dgwnwt0KEw8oCDVIcEQ,erPtGSgq_kmqfeSlZWw4VA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Satchel (Silver)", - "GiftDropId": 1009, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1009", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1009, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Gold Sequins)", - "GiftDropId": 1011, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1011", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1011, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,Wm30oV5BtEuFQZFk3dPK_w,tfiSfpRez0y_R4QjAhO0bQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Red Sequins)", - "GiftDropId": 1012, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1012", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1012, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0d4e7ebe-efd9-4e68-9900-5645916e7596,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Business Tie (Silver Sequins)", - "GiftDropId": 1013, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1013", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1013, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Bandolier (Brown)", - "GiftDropId": 1014, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1014", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1014, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,YTlnBuEjhUG1hSfAs8qwuw,IcR9Z_MxKkS9uh4uFYuFzQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Bandolier (Black)", - "GiftDropId": 1015, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1015", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1015, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Belt (Brown)", - "GiftDropId": 1016, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1016", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1016, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,lAjUeUtTLU2-3bG2OXBukg,LFB_YqTym0-tQmUIj-YcYA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Belt (Black)", - "GiftDropId": 1017, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1017", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1017, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winter Cloak (Nightwatch)", - "GiftDropId": 1036, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1036", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1036, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,pXrZhtzjV02_qvIQoWEFWA,Hj8WnsdidE6rJeNyOmWUfg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Winter Cloak (Hearthstone)", - "GiftDropId": 1037, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1037", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1037, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9231a9c6-7638-4fe9-bd2f-eac6c943009b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Championship Wrestling Belt", - "GiftDropId": 1040, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1040", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1040, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Vest (Black)", - "GiftDropId": 1045, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1045", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1045, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,178c6beb-c737-434c-a53b-d14f438f6a98,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Vest (Blue)", - "GiftDropId": 1046, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1046", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1046, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,2913bd93-bf35-4bdf-b83a-d40a10213adc,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Vest (Red)", - "GiftDropId": 1047, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1047", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1047, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Purple)", - "GiftDropId": 1053, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1053", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1053, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,b42d903b-b393-4f49-af5e-38d0fb6c42b0,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Blue)", - "GiftDropId": 1054, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1054", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1054, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,8cab8cc6-9a2d-434c-8b72-e66edbdd223c,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Black)", - "GiftDropId": 1055, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1055", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1055, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,657f28d5-672a-4f27-86c6-3cb00f25bb84,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Red)", - "GiftDropId": 1056, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1056", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1056, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,w_aK2K9bHEeU6oSQ7BK0qg,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Long Coat (Green)", - "GiftDropId": 1057, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1057", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1057, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Red)", - "GiftDropId": 1058, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1058", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1058, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,5b58d879-2bc4-47ed-a996-1af2ace16425,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Green)", - "GiftDropId": 1059, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1059", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1059, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d320ad9b-ba5c-45ea-b2b8-0d3e409a9db1,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Black)", - "GiftDropId": 1060, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1060", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1060, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d61711fd-589a-4669-b991-9408a58fffd9,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Cream)", - "GiftDropId": 1061, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1061", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1061, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,oJFfs62tR0WVRry2Smt8yA,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Light Blue)", - "GiftDropId": 1062, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1062", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1062, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,MIfCkcrFOEasJqfDmxThdw,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Belted Dress (Purple)", - "GiftDropId": 1063, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1063", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1063, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flowered Dress (Red)", - "GiftDropId": 1064, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1064", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1064, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,1acb1f56-4509-449f-9c6a-065bdeaa9ee3,2d7361d2-31a2-404b-90da-10e89114e1f2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flowered Dress (Grey)", - "GiftDropId": 1065, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1065", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1065, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,e98c3f98-7844-4d6e-a21c-05027033c18c,2d7361d2-31a2-404b-90da-10e89114e1f2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flowered Dress (Yellow)", - "GiftDropId": 1066, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1066", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1066, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c161dc73-6ce3-49c4-8d15-45e6911f84e4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sea Captain Beard", - "GiftDropId": 1067, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1067", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1067, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Blue, White, Red)", - "GiftDropId": 1068, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1068", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1068, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b9f51861-ad10-4878-a9b1-d849bccf532a,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, White, Red)", - "GiftDropId": 1069, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1069", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1069, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b5d62931-e756-4a8a-8f3b-760beba49319,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, White)", - "GiftDropId": 1070, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1070", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1070, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,6145292a-9002-41c6-8cd5-43679b6f542f,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, White, Grey)", - "GiftDropId": 1071, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1071", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1071, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,7c1aaa7e-503b-46ef-b1c5-0c61a75b916e,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, White, Blue)", - "GiftDropId": 1072, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1072", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1072, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,27af51bc-8226-4911-8d47-22d28ea8e378,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Blue, White, Blue)", - "GiftDropId": 1073, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1073", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1073, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,857fdcd8-704f-43d0-92b9-bca26619b153,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Blue, White)", - "GiftDropId": 1074, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1074", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1074, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,3df5d13b-ba77-4b51-90b2-7a946e4d0be7,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Captain Jacket (Black, Blue)", - "GiftDropId": 1075, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1075", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1075, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (Black)", - "GiftDropId": 1077, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1077", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1077, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,BLgkgLeS-EyazgPQxGcavg,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (White)", - "GiftDropId": 1078, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1078", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1078, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,eb3SmJTIh0628LrZUkI4KQ,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (Pink)", - "GiftDropId": 1080, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1080", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1080, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,Yr0mF1EWzEaIyRMOWFiY6w,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (Red)", - "GiftDropId": 1081, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1081", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1081, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,QzjakcO8tUaPeiI5KBLKtg,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Swing Dress (Blue)", - "GiftDropId": 1082, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1082", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1082, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Stunt Singlet (Yellow)", - "GiftDropId": 1086, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1086", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1086, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,i1XbjBqTu0CILIuJClWimA,B-sIpWNOfEigMeQF-WVR1g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Stunt Singlet (Pink)", - "GiftDropId": 1089, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1089", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1089, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Teal)", - "GiftDropId": 1092, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1092", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1092, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,grutFwJD_0Cb3t6fddNg6w,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Red)", - "GiftDropId": 1093, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1093", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1093, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,EbVDqEJQOk6j0UvX3t-8rQ,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Blue)", - "GiftDropId": 1094, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1094", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1094, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,C3ll7uPfUkeZ1QLX80_BpQ,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Yellow)", - "GiftDropId": 1095, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1095", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1095, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,JS7aa4QSUUOpUYPqRZEb5g,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker (Orange)", - "GiftDropId": 1096, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1096", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1096, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Animal Sweater (Ferret) ", - "GiftDropId": 1101, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1101", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1101, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,azbt5pgvrUS4LQwhndFeJg,cHZ4lDnSoUypIXCiRRowzg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Animal Sweater (Axolotl)", - "GiftDropId": 1102, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1102", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1102, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,6dzz5ZcGtE6bEjQHxWmo0A,2cSC290cPkCOrW5vtlVUxw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Animal Sweater (Penguin)", - "GiftDropId": 1103, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1103", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1103, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,yXVeN9SzQUKE_6u_2KPzgw,sWgRczvpUU6ZHeoMrMD_yw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Animal Sweater (Toucan)", - "GiftDropId": 1104, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1104", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1104, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,61VZkFjB402brzWm4UsftA,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Archer Tunic (Grey)", - "GiftDropId": 1111, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1111", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1111, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Coat (Brown)", - "GiftDropId": 1115, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1115", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1115, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,da185fbb-ad2b-4f30-87a2-491f24b78ebb,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Coat (Black)", - "GiftDropId": 1116, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1116", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1116, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,bea795cc-aabd-4229-84dd-49ab4f91a445,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Coat (Tan)", - "GiftDropId": 1117, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1117", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1117, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,2APfqVnnQUaDYKi-fQg8jg,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Coat (Red)", - "GiftDropId": 1118, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1118", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1118, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e48955ae-50e0-4f55-93a1-611150142331,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbarian Tunic", - "GiftDropId": 1119, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1119", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1119, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Shirt (Red)", - "GiftDropId": 1120, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1120", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1120, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,a5925738-a451-4f25-b622-ccbfa12bd88c,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Shirt (Black)", - "GiftDropId": 1121, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1121", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1121, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,c64ac7a9-7fd4-4587-8626-0413a190b706,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Shirt (Green)", - "GiftDropId": 1122, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1122", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1122, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sarong Swimsuit", - "GiftDropId": 1123, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1123", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1123, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,1919d319-6cce-4500-8766-15fed6a13fa8,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Suit (Gold)", - "GiftDropId": 1126, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1126", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1126, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,lBe3yxuE40eBmTrnEHBqQQ,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Suit (Purple)", - "GiftDropId": 1127, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1127", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1127, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,oZ8k0Qv3SkG-DkY0_dP7UA,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Suit (Teal)", - "GiftDropId": 1128, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1128", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1128, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Biker Jacket", - "GiftDropId": 1129, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1129", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1129, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bog Monster Suit", - "GiftDropId": 1131, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1131", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1131, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9ffa6e06-5200-4e53-ac13-f8491aecc864,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bounty Hunter Armor ", - "GiftDropId": 1133, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1133", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1133, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Turkey)", - "GiftDropId": 1134, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1134", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1134, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,-k9_-2onrEG407or8t1RFw,b-IM3eYMJUa40395O5XeLg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Hambone)", - "GiftDropId": 1135, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1135", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1135, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,GDvaUU10-EKh3pKUQ9tnag,b-IM3eYMJUa40395O5XeLg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Runway)", - "GiftDropId": 1136, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1136", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1136, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,kLyM-6otSUy2ql5SEmnF9Q,b-IM3eYMJUa40395O5XeLg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Spared)", - "GiftDropId": 1137, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1137", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1137, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,8xjU4GQ4OkaqGyad-ypwtw,5RUG6i2Mx0-55IO-IlhUdQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Flames, Red)", - "GiftDropId": 1138, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1138", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1138, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,032pE8s9Ik-2CImFVDrSqg,5RUG6i2Mx0-55IO-IlhUdQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Flames, Blue)", - "GiftDropId": 1139, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1139", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1139, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,M4765UHzsUeNTwH-Pcxp1g,5RUG6i2Mx0-55IO-IlhUdQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Flames, Green)", - "GiftDropId": 1140, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1140", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1140, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,ghM-uFq5-0Ci38AOHa9zZA,IWg9wuda4kaCilJk8JQpTQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Deadwood)", - "GiftDropId": 1142, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1142", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1142, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,Gtq8yRlt1UeFW8U-sc7FiA,IWg9wuda4kaCilJk8JQpTQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Brooklyn)", - "GiftDropId": 1143, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1143", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1143, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,XrSL-v2MbkK0md-FMOweOA,IWg9wuda4kaCilJk8JQpTQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Sleeper)", - "GiftDropId": 1144, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1144", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1144, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,KqjQ1xRpokGLKp9GVN1EFA,VO_3cgqQqUOTz30TVUxrFA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Striker)", - "GiftDropId": 1145, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1145", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1145, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yrQCLXiqRUSwnuQRYX2Rsw,VO_3cgqQqUOTz30TVUxrFA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Lily)", - "GiftDropId": 1146, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1146", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1146, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yZR5aX3gQ0WpRUT6cfK1cA,VO_3cgqQqUOTz30TVUxrFA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bowling Shirt (Split)", - "GiftDropId": 1147, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1147", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1147, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Shirt (Blue)", - "GiftDropId": 1149, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1149", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1149, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,0ec6628c-a106-4452-af82-105a3e3a9f2e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Shirt (Red)", - "GiftDropId": 1150, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1150", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1150, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,rzUd1IMTKUmW0HeMPSIOBQ,0ec6628c-a106-4452-af82-105a3e3a9f2e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Shirt (Green)", - "GiftDropId": 1151, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1151", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1151, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chef Coat (White)", - "GiftDropId": 1154, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1154", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1154, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,PR5dh2jf2kqGLO0lXgA69A,VDn1hO6ahky0GDJt5dRmyg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chef Coat (Black)", - "GiftDropId": 1155, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1155", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1155, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Overcoat (Blue)", - "GiftDropId": 1156, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1156", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1156, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Jacket (Black)", - "GiftDropId": 1157, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1157", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1157, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,Chiz8maLoEGDpZOJZEtdQg,cQUquXMk5EGt0VUCuPKBgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Jacket (Blue)", - "GiftDropId": 1158, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1158", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1158, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,2axtF2iOGkez1kfRRGUbYw,cQUquXMk5EGt0VUCuPKBgg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Jacket (Green)", - "GiftDropId": 1159, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1159", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1159, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6423f23e-dde3-4428-96f5-6091027c92cb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Martial Arts Gi (Cunning) ", - "GiftDropId": 1167, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1167", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1167, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Suit (Triton)", - "GiftDropId": 1168, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1168", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1168, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,Su7kiW24d0KapNns96JoFQ,EiIow5mS80qpoS10r1ZdvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Suit (Kraken)", - "GiftDropId": 1169, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1169", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1169, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,CahBzgN3D0y46AQsvGC14A,EiIow5mS80qpoS10r1ZdvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Suit (Leviathan)", - "GiftDropId": 1170, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1170", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1170, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "27e742bf-3081-4274-ba70-301f0edeb4f1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Doctor's Coat", - "GiftDropId": 1172, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1172", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1172, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Shirt (Red)", - "GiftDropId": 1176, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1176", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1176, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,fe5288bc-0e02-4ea3-b17d-dee0e576979d,b0298c45-0dd1-453e-bad4-41e4656bb38e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Shirt (Green)", - "GiftDropId": 1177, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1177", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1177, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,82de1ca3-67d6-454d-84fb-0eeece71fcbc,b0298c45-0dd1-453e-bad4-41e4656bb38e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Shirt (Orange)", - "GiftDropId": 1178, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1178", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1178, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,54d3c589-30ba-44c1-a77c-8f9e16eb0b20,b0298c45-0dd1-453e-bad4-41e4656bb38e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Shirt (Yellow)", - "GiftDropId": 1179, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1179", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1179, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Elven Armor", - "GiftDropId": 1186, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1186", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1186, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Night Coat (Zzz)", - "GiftDropId": 1187, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1187", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1187, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,uDJ5ZqU1f0CiOAH8WY22Yw,KOCzRE4a6EKb3_NVOI_lcg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Night Coat (Dozy)", - "GiftDropId": 1188, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1188", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1188, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,j66We9SYr0SNQ2ufZqIqhA,KOCzRE4a6EKb3_NVOI_lcg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Night Coat (Sandman)", - "GiftDropId": 1189, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1189", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1189, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,_jkPDSXFUkSU_yOfutQ7BA,KOCzRE4a6EKb3_NVOI_lcg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Night Coat (Zonked)", - "GiftDropId": 1190, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1190", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1190, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Uniform (Green)", - "GiftDropId": 1192, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1192", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1192, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,cea53c7f-24a9-4e3b-80b9-fbf95738f973,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Uniform (Orange)", - "GiftDropId": 1193, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1193", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1193, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Uniform (Blue)", - "GiftDropId": 1194, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1194", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1194, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,8c74ee27-3d56-401b-8a8c-7868a80770e8,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Uniform (Black)", - "GiftDropId": 1195, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1195", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1195, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Figure Skater Shirt", - "GiftDropId": 1196, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1196", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1196, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Figure Skater Skirt", - "GiftDropId": 1197, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1197", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1197, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Dress (Silver)", - "GiftDropId": 1198, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1198", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1198, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,565c17e0-496d-45bd-a2c3-564e118c06cc,a240d44f-963d-4d35-b22f-980938c7788d,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Dress (Black)", - "GiftDropId": 1199, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1199", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1199, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,a240d44f-963d-4d35-b22f-980938c7788d,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Dress (Gold)", - "GiftDropId": 1200, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1200", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1200, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e042433a-40a2-4758-8074-3b9d407835ec,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Romper (Pink)", - "GiftDropId": 1202, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1202", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1202, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5362d685-fc55-4b43-85a5-cc3d6cad3f69,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Galaxy)", - "GiftDropId": 1203, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1203", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1203, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gathered Shirt (White)", - "GiftDropId": 1204, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1204", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1204, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,sX0ZZDcCUkyFSJISfvq0vg,ovy_3j_qwE-7mmks1Z47ig,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Harness (Orange)", - "GiftDropId": 1214, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1214", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1214, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,RfZNDPUok0WyQEa3Ko08ow,ovy_3j_qwE-7mmks1Z47ig,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Harness (Blue)", - "GiftDropId": 1217, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1217", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1217, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Black)", - "GiftDropId": 1220, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1220", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1220, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,mvMeyStxGUGlNLSYNeSubQ,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Purple)", - "GiftDropId": 1221, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1221", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1221, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,u_Gzj9Nro0WS48xKnH9few,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Blue)", - "GiftDropId": 1222, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1222", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1222, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,JTgXKeT7w0K2Mw4Jk2HCqg,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Grey)", - "GiftDropId": 1223, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1223", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1223, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,rNhOQoP3XkOBHV28ze2NpA,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Orange)", - "GiftDropId": 1224, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1224", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1224, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,TEgugZRs80iJbhL87RdYwg,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Pink)", - "GiftDropId": 1225, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1225", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1225, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,ytmSzjhCr0Sm58MSNbwJUA,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Green)", - "GiftDropId": 1226, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1226", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1226, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,yM5xRrd9OkmDGyQddwOP6g,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Red)", - "GiftDropId": 1227, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1227", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1227, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LuYelZY8NkqmOp1pnxPXBg,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rec Room Hoodie (Yellow)", - "GiftDropId": 1229, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1229", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1229, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "I Heart Rec Room Shirt (White)", - "GiftDropId": 1242, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1242", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1242, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,4oywwjb3-kifr-um9x87Pw,11ZEZTFhy0ONpoXb3kiewQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Suspicious Goblin Shirt", - "GiftDropId": 1243, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1243", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1243, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,i4Zu9uZuWkWwm8IVGZwkbA,RmjxL1O9bEGOuYxY9kzHEA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "I Heart Rec Room Shirt (Orange)", - "GiftDropId": 1244, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1244", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1244, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,HQOKcDCvVUCItkAKo2ygGg,RmjxL1O9bEGOuYxY9kzHEA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "I Heart Rec Room Shirt (Blue)", - "GiftDropId": 1245, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1245", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1245, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Coat (Mastermind)", - "GiftDropId": 1247, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1247", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1247, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,YB7kXMyLJ0mF_5WidhmH8A,SeA8s77hr0K6DRZyVlRTCg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Coat (Spy)", - "GiftDropId": 1248, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1248", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1248, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,bQyNgFWAe0SPttPri6hxyg,SeA8s77hr0K6DRZyVlRTCg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Coat (Rogue)", - "GiftDropId": 1249, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1249", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1249, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,wRPoHTsXFESK5pjkxVMqGA,SeA8s77hr0K6DRZyVlRTCg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Coat (Outlaw)", - "GiftDropId": 1250, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1250", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1250, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "85e03c16-4288-45f4-a579-c911437d27d4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hoodie Jacket", - "GiftDropId": 1251, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1251", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1251, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Orange)", - "GiftDropId": 1263, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1263", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1263, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Red)", - "GiftDropId": 1264, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1264", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1264, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Blue)", - "GiftDropId": 1265, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1265", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1265, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Pink)", - "GiftDropId": 1266, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1266", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1266, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Green)", - "GiftDropId": 1267, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1267", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1267, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,d2b40639-5d34-45b6-904e-6dd29030ff44,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Yellow)", - "GiftDropId": 1268, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1268", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1268, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,724c79a3-822c-422f-9462-a5374ee0211c,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (White)", - "GiftDropId": 1269, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1269", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1269, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,c72911d0-453f-4732-b1bd-dad520220a06,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Purple)", - "GiftDropId": 1270, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1270", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1270, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,90bc2d31-1715-4d1a-813a-7c57e66cb017,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Teal)", - "GiftDropId": 1271, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1271", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1271, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Jersey (Black)", - "GiftDropId": 1272, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1272", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1272, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,PMa9370LPEig_7pKwCceEQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Knight Armor (Green)", - "GiftDropId": 1279, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1279", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1279, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lacrosse Shirt (Purple)", - "GiftDropId": 1280, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1280", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1280, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,e3454bc7-c88d-4958-8b81-db3fe5472a1e,da36bbcc-2a9a-4ba2-9e4a-6f52c9b1ef74,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lacrosse Shirt (Pink)", - "GiftDropId": 1281, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1281", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1281, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Blue)", - "GiftDropId": 1286, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1286", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1286, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,apSQiQ1eO0mEzRsbugeu9w,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Green)", - "GiftDropId": 1287, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1287", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1287, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,VpqHNpPiY0CfRJEjRRM-mw,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Red)", - "GiftDropId": 1288, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1288", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1288, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,Z1F9rjKqCE-Hd2-Ip5g3gA,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Black)", - "GiftDropId": 1289, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1289", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1289, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,iufpnteVCEiiZu_m-yPovQ,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket (Purple)", - "GiftDropId": 1290, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1290", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1290, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "23944856-b567-4075-815f-261cb4655cff,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Apocalypse Jacket", - "GiftDropId": 1294, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1294", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1294, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Blue)", - "GiftDropId": 1295, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1295", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1295, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,VQjkyb5aoEKHKo_eZsq9ug,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Teal)", - "GiftDropId": 1296, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1296", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1296, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,kTP3xKhzBkuQF3SqvmYFKA,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Green)", - "GiftDropId": 1297, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1297", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1297, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,hYu9itGe1Ee5Neanhj9VtQ,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Orange)", - "GiftDropId": 1298, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1298", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1298, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,FE7_gQNBt0CXzMN6di5HWA,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Red)", - "GiftDropId": 1299, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1299", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1299, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,dYPaOkwy3EGAfvl8RyN4pw,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Skirt (Pink)", - "GiftDropId": 1300, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1300", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1300, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "RecFly Vest (Red)", - "GiftDropId": 1302, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1302", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1302, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,kkvNbVRjcEKtChpy3W1bqQ,nbhzQy_Hdkeohh4S1IezwA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "RecFly Vest (Black)", - "GiftDropId": 1303, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1303", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1303, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,GVoh3mdWf0WNA9lfqL1GEw,w9qG5gHlAUqh8f9ZgnezsQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "RecFly Vest (Blue)", - "GiftDropId": 1304, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1304", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1304, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,x4PPvuhg6USE6GSFgZZnCg,w9qG5gHlAUqh8f9ZgnezsQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "RecFly Vest (Green)", - "GiftDropId": 1305, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1305", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1305, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Resistance Trench Coat", - "GiftDropId": 1306, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1306", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1306, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Suit (Pinstripe)", - "GiftDropId": 1307, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1307", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1307, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,531b4297-b38b-4362-9854-4f2139ea43be,33ee376a-586e-4aff-a7e4-4213445a3e92,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Suit (Herringbone)", - "GiftDropId": 1308, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1308", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1308, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,newGzX_zA0eGUX3Iayq5Ag,6Jv4AJGBYUGP_n4sDcz2Kw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Suit (Purple)", - "GiftDropId": 1311, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1311", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1311, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nineties Outfit (Da Bomb)", - "GiftDropId": 1313, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1313", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1313, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,ulOBBvFEJ0ioFA1qmL390A,u9yHtj_tfkuowGp0h_YpFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nineties Outfit (Aiight)", - "GiftDropId": 1314, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1314", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1314, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,V4CVhCB8eU-nrfYgticVOA,u9yHtj_tfkuowGp0h_YpFg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Nineties Outfit (Booyah)", - "GiftDropId": 1315, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1315", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1315, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Black)", - "GiftDropId": 1317, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1317", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1317, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,fvoaMN4M10WS6jiA6XlOJQ,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Blue)", - "GiftDropId": 1318, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1318", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1318, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,PwsLxCnzOkSW-RGz3tNb1w,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Tan)", - "GiftDropId": 1319, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1319", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1319, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,uiBklotTUEqRI2F67vyJyA,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Purple)", - "GiftDropId": 1320, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1320", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1320, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,jXBi28cRV0CEQgKIrpD0_A,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Peacoat (Red)", - "GiftDropId": 1321, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1321", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1321, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Poodle Skirt", - "GiftDropId": 1337, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1337", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1337, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Prankster Jacket", - "GiftDropId": 1338, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1338", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1338, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Jacket (Red)", - "GiftDropId": 1340, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1340", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1340, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,4169bfed-8403-4590-a29d-4941275ac0b6,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Jacket (Pink)", - "GiftDropId": 1341, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1341", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1341, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,0724b166-9ace-46ff-a191-b13f135b00a8,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Jacket (Blue)", - "GiftDropId": 1342, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1342", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1342, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Quilted Vest (Black)", - "GiftDropId": 1344, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1344", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1344, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,QBglgj80zkuvUkk55Y5Feg,ACrBLiAIgEur9V6l_B0CvA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Quilted Vest (Green)", - "GiftDropId": 1345, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1345", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1345, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,-HYrY2A5Tk2UWMi4_hmYbg,ACrBLiAIgEur9V6l_B0CvA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Quilted Vest (Orange)", - "GiftDropId": 1346, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1346", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1346, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,IjRMopsYlUqSE6327I9TIQ,ACrBLiAIgEur9V6l_B0CvA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Quilted Vest (Purple)", - "GiftDropId": 1347, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1347", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1347, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Puffer Vest ", - "GiftDropId": 1348, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1348", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1348, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Raincoat (Yellow)", - "GiftDropId": 1350, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1350", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1350, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,GH9q8_0O9EqjGdz7lGWD2g,T7zwcIIc8Ee3ud8a2JCuwQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Raincoat (Blue)", - "GiftDropId": 1351, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1351", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1351, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,M-N9vQt0CEefqgmeLp3l4g,T7zwcIIc8Ee3ud8a2JCuwQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Raincoat (Green)", - "GiftDropId": 1352, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1352", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1352, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,q_HcScqHgEG-x70g1wtfLA,T7zwcIIc8Ee3ud8a2JCuwQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Raincoat (Red)", - "GiftDropId": 1353, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1353", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1353, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,b415fe60-3e9d-4f4d-a53a-ca15eac6af7d,d21e1b6f-9c9e-42b4-bad5-201ec43161e9,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ranger Uniform (Green)", - "GiftDropId": 1356, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1356", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1356, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Dress (Blue)", - "GiftDropId": 1357, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1357", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1357, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,0ps19D7b_U2iejdKQFORyA,PoMG28QAskagun1LSd4C_A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Dress (Red)", - "GiftDropId": 1358, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1358", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1358, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,t1MeoroFOUioYmPfT9mCeA,PoMG28QAskagun1LSd4C_A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Dress (Green)", - "GiftDropId": 1359, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1359", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1359, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,pjkTGVHkIE-BzCVi1KAesQ,PoMG28QAskagun1LSd4C_A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Dress (Black)", - "GiftDropId": 1360, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1360", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1360, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Tabard (Blue)", - "GiftDropId": 1362, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1362", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1362, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,5TJPDmvEBEOkP82ZWLFqtg,50NUFrDxbUKmXbyAHBenvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Tabard (Red)", - "GiftDropId": 1363, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1363", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1363, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,rCeRk8Pdl0W5M47JAQPhpw,50NUFrDxbUKmXbyAHBenvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Tabard (Green)", - "GiftDropId": 1364, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1364", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1364, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,s2kCppLsN0uY7Hy6qjQc-g,50NUFrDxbUKmXbyAHBenvQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Royal Tabard (Black)", - "GiftDropId": 1366, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1366", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1366, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Shirt (Tan)", - "GiftDropId": 1367, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1367", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1367, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,84c016ad-133f-45e3-a412-cac35612540b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Shirt (Green)", - "GiftDropId": 1368, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1368", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1368, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Wetsuit (Orange)", - "GiftDropId": 1382, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1382", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1382, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,VqtOYBiKRkaSW4xAlBxQgg,xTqtLPQVyEKjAQZYl6HGow,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Scuba Wetsuit (Blue)", - "GiftDropId": 1383, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1383", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1383, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Coat (Tan)", - "GiftDropId": 1387, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1387", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1387, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,Z1Ib9r_fkUqgoZk0uid_Xw,9ZP617DQk0mZ10J3d5q9oA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Coat (Black)", - "GiftDropId": 1388, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1388", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1388, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,msOFHoFN9UORkeXXtdqBsw,9ZP617DQk0mZ10J3d5q9oA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Detective Coat (Grey)", - "GiftDropId": 1389, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1389", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1389, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Jacket (Summit)", - "GiftDropId": 1395, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1395", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1395, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,fXNkMWFMV0aXalK_y_8SHw,HQQWccdyakaEmntPhvC6CQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Ski Buddy Jacket (Chill)", - "GiftDropId": 1396, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1396", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1396, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, Blue)", - "GiftDropId": 1397, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1397", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1397, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, White)", - "GiftDropId": 1398, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1398", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1398, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, Black)", - "GiftDropId": 1399, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1399", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1399, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, Green)", - "GiftDropId": 1400, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1400", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1400, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,4Eck_dNL1UKlIZWsA1YppQ,WeyKw_WS70Cx3NZdOaxGeA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Sleeveless, Grey)", - "GiftDropId": 1401, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1401", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1401, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "rJ9zPPGdlk2i24sxLfkqng,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Lifeguard Uniform", - "GiftDropId": 1409, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1409", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1409, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Uniform (Red)", - "GiftDropId": 1412, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1412", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1412, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,XFCpIdeDXUqeYCIgh4fGtg,MBuxBAIkpkWI26d-arAKQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Uniform (Blue)", - "GiftDropId": 1413, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1413", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1413, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,oKxmH-1s2EyIDkZoOQSQQw,MBuxBAIkpkWI26d-arAKQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Uniform (Green)", - "GiftDropId": 1414, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1414", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1414, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,MxnAq_XOw0uTzQ8IIxqb_Q,MBuxBAIkpkWI26d-arAKQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Soda Clerk Uniform (Yellow)", - "GiftDropId": 1415, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1415", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1415, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Vest", - "GiftDropId": 1423, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1423", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1423, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,cbn6vE0gDUOuklVhJv1vNA,Ru4HN3stVUutQ9rUh7ro1g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Gunslinger Vest (Grey)", - "GiftDropId": 1425, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1425", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1425, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "e29d044e-79fb-4280-bca9-aa1e1257e968,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Martial Arts Gi (Speed)", - "GiftDropId": 1426, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1426", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1426, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Vest", - "GiftDropId": 1427, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1427", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1427, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,gy-xeYKKREaBlx9fUmuW2w,C8gCmBZ8RUG83vvDw_UYew,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Vest (Silver)", - "GiftDropId": 1429, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1429", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1429, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Corset", - "GiftDropId": 1430, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1430", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1430, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,rsUfUnTwbU6zrjrHWps1yA,GJRG8sCM7kSGfUd9gLwpgQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Corset (Silver)", - "GiftDropId": 1432, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1432", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1432, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "25769d1f-4ecb-4d92-b692-322b38c013b5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Martial Arts Gi (Strength) ", - "GiftDropId": 1433, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1433", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1433, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hero Guy Armor", - "GiftDropId": 1434, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1434", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1434, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Poindexter Shirt (White)", - "GiftDropId": 1435, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1435", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1435, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,lq59KZwElEStrviDEQLLcA,olyS074RHU-ojE0GzBBYJw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Poindexter Shirt (Black)", - "GiftDropId": 1436, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1436", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1436, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Shirt", - "GiftDropId": 1444, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1444", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1444, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,NKf5-r2S_0iP0SaO9bjvaw,0WOBGm34H0ySBC10VToa9g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Paradise)", - "GiftDropId": 1446, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1446", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1446, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,adJVA26PyUSVvmZgxkCAmQ,0WOBGm34H0ySBC10VToa9g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Poppy)", - "GiftDropId": 1447, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1447", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1447, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,4ijeE3LqUUuSplKrMto6Kg,ytfIq0TiYU6EUdd0ruaGAQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Begonia)", - "GiftDropId": 1448, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1448", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1448, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,d27e5m1BLUWI42Pxnj6F4A,ytfIq0TiYU6EUdd0ruaGAQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Dahlia)", - "GiftDropId": 1449, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1449", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1449, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,RZFWcTzxPkOfUuTIQ1mzkg,ytfIq0TiYU6EUdd0ruaGAQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Luau Shirt (Primrose)", - "GiftDropId": 1450, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1450", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1450, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,XT_txjZfIUOT400UPHLaRA,M-mi8QUHwEeIewXE8uAlrQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tourist Shirt (Green)", - "GiftDropId": 1451, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1451", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1451, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,gwdtq3NiEEmMKYtn1VPoiw,M-mi8QUHwEeIewXE8uAlrQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Traveler Shirt (Yellow)", - "GiftDropId": 1453, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1453", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1453, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Shirt (Tan)", - "GiftDropId": 1454, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1454", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1454, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,H0sqS2_VPEieVrHSyMNo7g,9HVoTIf90Ea8_czICVg9AA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Shirt (Black)", - "GiftDropId": 1455, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1455", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1455, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Tank Top (Tan)", - "GiftDropId": 1458, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1458", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1458, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,3qu7mxSNpkKRrYMhsWHVGg,K5NXVecrqk6Nb6SkBu08ww,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Tank Top (Black)", - "GiftDropId": 1459, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1459", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1459, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,Ij8MXrl1Okip4M7y-gF23Q,K5NXVecrqk6Nb6SkBu08ww,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Tank Top (Red)", - "GiftDropId": 1460, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1460", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1460, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,qEojxjSXm06CX52hRDJAew,K5NXVecrqk6Nb6SkBu08ww,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Treasure Hunter Tank Top (White)", - "GiftDropId": 1461, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1461", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1461, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Blue)", - "GiftDropId": 1462, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1462", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1462, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (White)", - "GiftDropId": 1463, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1463", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1463, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Black)", - "GiftDropId": 1464, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1464", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1464, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,o2WfRyjJy0CKoUg8YIxNjQ,sxWOOK1RwUOp5YqZ7a36xg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Tan)", - "GiftDropId": 1465, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1465", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1465, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Jacket (Green)", - "GiftDropId": 1466, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1466", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1466, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,sscD2O3LEUOAKkqjGpGe8g,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Orange)", - "GiftDropId": 1467, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1467", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1467, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,hRxyLsKfsESFAsXAyZQjoA,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Blue)", - "GiftDropId": 1468, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1468", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1468, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,kgCKjtSjFEmFq9ez2llxKQ,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Green)", - "GiftDropId": 1469, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1469", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1469, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,KaZqNx5VKkarRrOJcTuD9A,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Red)", - "GiftDropId": 1470, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1470", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1470, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,eOJkmpSL4EypK-AQz7j8gQ,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flannel (Black)\t", - "GiftDropId": 1471, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1471", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1471, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Black)", - "GiftDropId": 1477, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1477", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1477, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,9b9t8_aKH0-gQXMhZycaOA,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Orange)", - "GiftDropId": 1478, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1478", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1478, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Zz4XatKfUEapReRAQHxKKA,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (White)", - "GiftDropId": 1479, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1479", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1479, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Jt0QqNrAp0qzUR_RQoivVg,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Green)", - "GiftDropId": 1480, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1480", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1480, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,lBePHNL9LkyaAjEFyFE8Sw,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Red)", - "GiftDropId": 1481, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1481", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1481, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G4HIPUjekUigiU0-Kr9mdA,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Yellow)", - "GiftDropId": 1482, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1482", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1482, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,5mcp7-2ZEE6n3-zN3_CoWw,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Purple)", - "GiftDropId": 1483, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1483", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1483, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,R0UCacpdhUS906Xf7l142A,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Teal)", - "GiftDropId": 1484, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1484", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1484, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G-VKgepBkkeATcwCaS6Rwg,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Grey)", - "GiftDropId": 1485, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1485", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1485, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,1LonkCbt4kykeAScYKpwyg,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Navy)", - "GiftDropId": 1486, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1486", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1486, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,IXWd396grEOWHt32L7fCpQ,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Turtleneck (Blue)", - "GiftDropId": 1487, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1487", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1487, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Vest (Black)", - "GiftDropId": 1499, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1499", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1499, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,ffHKr5EcIU24PbAtWSnalw,bVrkIyADCUiGNYWdmP_HPw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Vest (Red)", - "GiftDropId": 1500, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1500", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1500, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,m4W5D0Oa9kaWa-8I96YYzA,WF_fg80f30qvHit0vGBwCA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Formal Vest (Green)", - "GiftDropId": 1501, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1501", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1501, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Donut Dreams)", - "GiftDropId": 1502, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1502", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1502, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,nu_UGtkJOUK-5MWaW83MUg,pgBFpOtl00K2zsTJcfrefQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Watermelon Rain)", - "GiftDropId": 1503, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1503", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1503, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,sJioq5ARDUyMHFji_6OxFw,bjXO36Nu6EWD2dU1UC4Uwg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Pina Colada)", - "GiftDropId": 1504, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1504", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1504, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,56qchovVVEaVwL9S52kneA,BAjMoTHbD0mSCjoG9jmzjA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Sour Popsicle)", - "GiftDropId": 1505, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1505", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1505, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,zJMD-_HR80WCAUqYGe7_NA,rAzhaLh1nEWMd9v1D-HWcQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Lonely Island)", - "GiftDropId": 1506, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1506", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1506, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,9P8ARRUYdk6hCoGMKhix4w,o__JORNtYEiJEyyoBIimPA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Silly Shorts (Pink Flamingo)", - "GiftDropId": 1507, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1507", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1507, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,aBQ3R9boek-mYeSYSNvDbQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Witch Hunter Torso (Blue)", - "GiftDropId": 1524, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1524", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1524, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3KmqVuMQkCYK6sVTMOTOA,8768aa33-b014-4062-b323-b146dd7d78d2,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wizard Robes (Purple)", - "GiftDropId": 1531, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1531", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1531, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Towel Cape", - "GiftDropId": 1533, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1533", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1533, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5f6a7dee-0b44-4138-b3a7-a079dbc63e83,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Monkey Backpack", - "GiftDropId": 1535, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1535", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1535, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Striped, Red)", - "GiftDropId": 1539, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1539", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1539, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Plaid, Red)", - "GiftDropId": 1540, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1540", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1540, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Plaid, Blue)", - "GiftDropId": 1541, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1541", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1541, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Plaid, White)", - "GiftDropId": 1542, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1542", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1542, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Dots, Red)", - "GiftDropId": 1543, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1543", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1543, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Dots, Blue)", - "GiftDropId": 1544, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1544", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1544, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tied Scarf (Dots, White)", - "GiftDropId": 1545, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1545", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1545, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Yellow)", - "GiftDropId": 1546, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1546", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1546, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,026ca50e-3a81-43cf-87f5-950687b7bbdd,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Pink)", - "GiftDropId": 1547, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1547", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1547, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,6584dada-499e-4d7c-958d-466955b20640,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Blue)", - "GiftDropId": 1548, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1548", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1548, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,uUOO-k5KS0mU7B5BLaOpnA,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Black)", - "GiftDropId": 1549, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1549", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1549, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,Ijf-j7EgEkGYOKo9SQNLRw,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tracksuit (Red)", - "GiftDropId": 1550, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1550", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1550, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Teal)", - "GiftDropId": 1551, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1551", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1551, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,HncURj5yi0ykk2cVyCZ4Sw,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Red)", - "GiftDropId": 1552, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1552", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1552, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,42ZNGHXMvU29yo9s9tVpOQ,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Blue)", - "GiftDropId": 1553, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1553", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1553, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,VDo682NvSUa8xYn8zTX-AQ,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Yellow)", - "GiftDropId": 1554, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1554", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1554, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,FvEjo9let0e_Sr-kWq5AvQ,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Windbreaker Cuffs (Orange)", - "GiftDropId": 1555, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1555", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1555, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,8hUBfmq28EixYjv92Xcrgg,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Archer Gloves (Grey)", - "GiftDropId": 1562, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1562", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1562, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Gloves (White)", - "GiftDropId": 1563, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1563", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1563, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,y_gTbnuYS0GKJmnCs2retw,hjk9OO8CW0KNGR7A6_p84A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Astronaut Gloves (Orange)", - "GiftDropId": 1564, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1564", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1564, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Gloves (Brown)", - "GiftDropId": 1565, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1565", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1565, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,97bbb384-b37e-4ea1-902c-88fbd6854ab5,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Gloves (Black)", - "GiftDropId": 1566, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1566", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1566, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7fb8496f-0e6c-4e48-b8fa-5709ebbf4820,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Gloves (Tan)", - "GiftDropId": 1567, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1567", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1567, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7nRz9Jmnn066_PzngkhfFA,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Aviator Gloves (Red)", - "GiftDropId": 1568, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1568", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1568, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Wrist (White)", - "GiftDropId": 1569, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1569", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1569, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,bb01b51e-a95f-441e-8c52-abc3aeed7145,f7c7d05f-5454-445a-af38-25f110bd204a,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Barbershop Wrist (Black)", - "GiftDropId": 1570, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1570", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1570, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,1919d319-6cce-4500-8766-15fed6a13fa8,1f18670d-df52-4d2b-8009-a32cf7c67b40,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Gloves (Gold)", - "GiftDropId": 1572, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1572", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1572, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,lBe3yxuE40eBmTrnEHBqQQ,1f18670d-df52-4d2b-8009-a32cf7c67b40,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Gloves (Purple)", - "GiftDropId": 1573, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1573", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1573, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,oZ8k0Qv3SkG-DkY0_dP7UA,1f18670d-df52-4d2b-8009-a32cf7c67b40,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Beekeeper Gloves (Teal)", - "GiftDropId": 1574, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1574", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1574, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Gloves (Blue)", - "GiftDropId": 1575, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1575", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1575, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,0XPd5RzNJEepHztqwAznHQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Gloves (Yellow)", - "GiftDropId": 1576, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1576", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1576, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,XNq4Cns4lEGydtktdsXlmQ,0XPd5RzNJEepHztqwAznHQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Gloves (Navy)", - "GiftDropId": 1577, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1577", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1577, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,83522c12-9549-4d74-8c87-bae210bcd2bf,0XPd5RzNJEepHztqwAznHQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bike Gloves (Black)", - "GiftDropId": 1578, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1578", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1578, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4e42e02e-33fd-4ff9-b74e-9bde26253c35,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bog Monster Wrist", - "GiftDropId": 1580, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1580", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1580, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2ddd2c2b-596c-4022-a488-655b0db1c265,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Bounty Hunter Glove", - "GiftDropId": 1581, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1581", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1581, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Gloves (Blue)", - "GiftDropId": 1582, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1582", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1582, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Gloves (Red)", - "GiftDropId": 1583, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1583", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1583, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,rzUd1IMTKUmW0HeMPSIOBQ,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Boxing Gloves (Green)", - "GiftDropId": 1584, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 1584", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1584, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Cuffs (Black)", - "GiftDropId": 1585, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1585", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1585, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,5Dbc8qCaY0OXEuwykM4naA,awWjleyNP0akWNYJoehCLA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Cuffs (Blue)", - "GiftDropId": 1586, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1586", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1586, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,HBt3ToOkUUereoPKwyvzuw,awWjleyNP0akWNYJoehCLA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Conductor Cuffs (Green)", - "GiftDropId": 1587, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1587", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1587, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Brown)", - "GiftDropId": 1593, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1593", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1593, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,17e44296-1cd9-4f8e-9aa7-3837dc69279a,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Cherry)", - "GiftDropId": 1594, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1594", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1594, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c4ebfd1a-fcda-4b98-a151-a941b1801867,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1002, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Black, Gold)", - "GiftDropId": 1595, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1595", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1595, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c0c33a35-494c-4a1a-aa53-d27d9b9ef5a4,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 1002, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Yellow)", - "GiftDropId": 1596, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1596", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1596, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wat8f6fs80KptZbW39e8tA,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (White)", - "GiftDropId": 1597, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1597", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1597, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wkqKPZmnoU-8TXSWzi2-Ow,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cowboy Gloves (Black, Silver)", - "GiftDropId": 1598, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1598", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1598, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Gloves (Triton)", - "GiftDropId": 1599, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1599", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1599, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,Su7kiW24d0KapNns96JoFQ,0p5N9U5qokKdQhW07yYLGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Gloves (Kraken)", - "GiftDropId": 1600, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1600", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1600, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,CahBzgN3D0y46AQsvGC14A,0p5N9U5qokKdQhW07yYLGQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Deep Sea Diver Gloves (Leviathan)", - "GiftDropId": 1601, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1601", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1601, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Gloves (Red)", - "GiftDropId": 1602, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1602", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1602, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,fe5288bc-0e02-4ea3-b17d-dee0e576979d,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Gloves (Green)", - "GiftDropId": 1603, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1603", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1603, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,b444ed0a-eab5-4bd6-af34-d080de74a149,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Gloves (Orange)", - "GiftDropId": 1604, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1604", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1604, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,8053b5e5-0f67-4329-a45d-1ee9fc830820,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Drum Major Gloves (Yellow)", - "GiftDropId": 1605, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1605", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1605, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Elven Bracer", - "GiftDropId": 1607, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1607", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1607, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Gloves (White)", - "GiftDropId": 1608, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1608", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1608, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,18b52db5-0261-46a0-9214-ff510d455ed9,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Gloves (Orange)", - "GiftDropId": 1609, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1609", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1609, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,55b4e661-43e1-4708-82d5-2dd2bebd4f45,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Gloves (Blue)", - "GiftDropId": 1610, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1610", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1610, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,8c74ee27-3d56-401b-8a8c-7868a80770e8,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fighter Pilot Gloves (Black)", - "GiftDropId": 1611, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1611", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1611, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Gloves (Black)", - "GiftDropId": 1612, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1612", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1612, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,30c61e63-5e09-4a6f-8915-1e1fe4d55cf0,0e42108e-3b08-49b4-86c0-7984719e8380,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Gloves (Silver)", - "GiftDropId": 1613, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1613", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1613, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,2cf2b644-3fa6-449c-9fe8-d0ab917f3106,0e42108e-3b08-49b4-86c0-7984719e8380,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Flapper Gloves (Gold)", - "GiftDropId": 1614, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1614", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1614, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,90qQe0AR3kOou0MsuoTmPA,ojCeJ1VwtUelyVqFnUwK5A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Mitt (Blue)", - "GiftDropId": 1620, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1620", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1620, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,hZKPr4sg10SRj9DLuEgOrw,ojCeJ1VwtUelyVqFnUwK5A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Mitt (Black)", - "GiftDropId": 1621, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1621", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1621, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,x3Q0vVeG_E6juqGM1o0SOQ,ojCeJ1VwtUelyVqFnUwK5A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Grillmaster Mitt (White)", - "GiftDropId": 1622, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1622", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1622, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,sX0ZZDcCUkyFSJISfvq0vg,rgzG7sfrlkqd9EO13LNmpQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Wrist Guard (Green)", - "GiftDropId": 1624, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1624", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1624, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,RfZNDPUok0WyQEa3Ko08ow,rgzG7sfrlkqd9EO13LNmpQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Runner Wrist Guard (Pink)", - "GiftDropId": 1627, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1627", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1627, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Gloves (Mastermind)", - "GiftDropId": 1630, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1630", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1630, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,DtFYrQwaCky5C1ZycqZbiQ,egpzBs77Q0CpDndZHqXOog,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Gloves (Spy)", - "GiftDropId": 1631, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1631", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1631, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,9SAPupKy_EO6YeG0SMkI5A,egpzBs77Q0CpDndZHqXOog,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Gloves (Rogue)", - "GiftDropId": 1632, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1632", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1632, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,hiMYlmk5sEqh-sElOY3A9g,egpzBs77Q0CpDndZHqXOog,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "International Thief Gloves (Outlaw)", - "GiftDropId": 1633, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1633", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1633, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,PMa9370LPEig_7pKwCceEQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Knight Gauntlet (Green)", - "GiftDropId": 1640, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1640", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1640, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Blue)", - "GiftDropId": 1645, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1645", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1645, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,UUyjVU4mvECPhI9xTMYR1Q,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Green)", - "GiftDropId": 1646, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1646", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1646, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,HWc25-d8dUmNN2F3n8mV5A,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Red)", - "GiftDropId": 1647, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1647", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1647, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,Y0e7o0_BKUm7XJSLediN5w,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Black)", - "GiftDropId": 1648, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1648", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1648, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,MS7EPNLJEEyMLC6_yHQYtA,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Letter Jacket Cuffs (Purple)", - "GiftDropId": 1649, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1649", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1649, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1fed823a-22bb-4225-bdc4-491da6eba875,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Apocalypse Gloves", - "GiftDropId": 1650, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1650", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1650, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Blue)", - "GiftDropId": 1651, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1651", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1651, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,zaSTWOUy_k6cnoVVYzypWg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Teal)", - "GiftDropId": 1652, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1652", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1652, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,1FcyrVGyGEC9dmOq_51nFQ,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Green)", - "GiftDropId": 1653, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1653", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1653, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,xpkEQ6yjhU-WfFPSjvPdHg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Orange)", - "GiftDropId": 1654, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1654", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1654, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,N9CBuYaMtUOrCks5UcOycg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Red)", - "GiftDropId": 1655, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1655", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1655, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,LDjFJtM-WkeYhtwA7cyDOg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Anime Glove (Pink)", - "GiftDropId": 1656, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1656", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1656, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Cuffs (Pinstripe)", - "GiftDropId": 1657, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1657", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1657, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,531b4297-b38b-4362-9854-4f2139ea43be,c2a9c007-2748-4fa2-ab9b-0081eef792f1,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Cuffs (Herringbone)", - "GiftDropId": 1658, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1658", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1658, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,newGzX_zA0eGUX3Iayq5Ag,QBzMp7MdAUOLIofvddui1A,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Mobster Cuffs (Purple)", - "GiftDropId": 1660, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1660", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1660, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Paintball Gloves", - "GiftDropId": 1662, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1662", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1662, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Wristbands (Black)", - "GiftDropId": 1668, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1668", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1668, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,a6796264-9c7e-4605-830c-06db8d0dc780,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Wristbands (Blue)", - "GiftDropId": 1669, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1669", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1669, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,f3b2330a-b981-4c7e-902f-1f57382f2388,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Wristbands (Pink)", - "GiftDropId": 1670, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1670", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1670, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,baffdefe-de21-4551-9330-b50873965bdd,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Punk Wristbands (Red)", - "GiftDropId": 1671, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1671", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1671, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Robot Gauntlets", - "GiftDropId": 1673, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": true, - "Tooltip": " Debug: 1673", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1673, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Gloves (Tan)", - "GiftDropId": 1674, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1674", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1674, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,fa9a3d8e-16c9-4a7e-9166-3226e0d13c39,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Safari Gloves (Green)", - "GiftDropId": 1675, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1675", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1675, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Cuff", - "GiftDropId": 1706, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1706", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1706, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,64Hvmzrb3Uu9X_dCA3M3Jw,rPpYm5fIzky4vqVB26guAw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Steampunk Cuff (Silver)", - "GiftDropId": 1707, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1707", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1707, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hero Bracer ", - "GiftDropId": 1708, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 1708", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1708, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,,,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (Blue)", - "GiftDropId": 1711, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1711", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1711, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,yA0KhVg19kWqG1UkyxQogQ,yBNsYcZXzEiuR0u3tWnnWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (White)", - "GiftDropId": 1712, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1712", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1712, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,P9bBSL0YLEyjN8PxMfgbKQ,yBNsYcZXzEiuR0u3tWnnWQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (Black)", - "GiftDropId": 1713, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1713", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1713, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,o2WfRyjJy0CKoUg8YIxNjQ,sHyNs-dpc0-_Ah-HJVczcw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (Tan)", - "GiftDropId": 1714, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1714", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1714, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,bgRKH1wfqkWVHcuSnFYnlQ,sHyNs-dpc0-_Ah-HJVczcw,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Trucker Cuff (Green)", - "GiftDropId": 1715, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1715", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1715, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,aBQ3R9boek-mYeSYSNvDbQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Witch Hunter Gloves (Blue)", - "GiftDropId": 1736, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1736", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1736, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3KmqVuMQkCYK6sVTMOTOA,47514b9b-0d17-4727-97ed-dab67e7fe031,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wizard Bracers (Purple)", - "GiftDropId": 1743, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 1743", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1743, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,j367nSYyg06rOMZ1GmfmFA,FS7kgc4DpkKuar24J9dW8g,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wristbands (Plaid)", - "GiftDropId": 1767, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1767", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1767, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,2qYs9IkE90eppx1DggNlsA,6Y43EyTpiEejGp0ODWTSjA,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wristbands (Moons & Stars)", - "GiftDropId": 1768, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1768", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1768, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,JV60jZGerUWuzQ2rRnwquQ,gSb8iLTEZ0mi3g5-jZXifQ,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Wristbands (Polka Dot)", - "GiftDropId": 1769, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": " Debug: 1769", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1769, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "19ef59c7-f74b-4c63-935a-1d4b1abd8518", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Coop)", - "GiftDropId": 1950, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc Coop Debug: 1950", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1950, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "2b70a76e-6f48-402e-90ff-40b06aa23eb8", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Coach Select)", - "GiftDropId": 1951, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc CoachSelect Debug: 1951", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1951, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "9d2a3618-12b3-4ca0-be59-ed15d7926d77", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Laser)", - "GiftDropId": 1952, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc Laser Debug: 1952", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1952, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "7877964e-3a2b-4818-8513-0e26a707bd7c", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Clear)", - "GiftDropId": 1953, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc Clear Debug: 1953", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1953, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "bd3f6aa5-c6e0-4e06-901d-1176accf1003", - "EquipmentPrefabName": "[DiscGolfDisc]", - "FriendlyName": "Disc Skin (Wood)", - "GiftDropId": 1954, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DiscGolfDisc Wood Debug: 1954", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1954, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "33c84c50-7c2e-4a80-ad06-79c4f20f829e", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Wood)", - "GiftDropId": 1957, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Wood Debug: 1957", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1957, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "7ef5d1d9-24db-428c-85e0-107c1bfcc026", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Orange)", - "GiftDropId": 1958, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Orange Debug: 1958", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1958, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "4aff20ee-0b20-434b-a030-d3e1764fe4e7", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Purple)", - "GiftDropId": 1959, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Purple Debug: 1959", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1959, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "36751c4a-86a9-40e1-bef2-84f962ab678d", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Vitton)", - "GiftDropId": 1960, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Vitton Debug: 1960", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1960, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ec5ef0f3-c072-45ec-bb8f-3781fb16e067", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Plaid)", - "GiftDropId": 1961, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Plaid Debug: 1961", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1961, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "b8d5612b-2c6f-46d6-9412-decddac7d4c1", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Pirate)", - "GiftDropId": 1962, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Pirate Debug: 1962", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1962, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Dg9PFcg-JUia72PnYJqkQg", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Caution)", - "GiftDropId": 1963, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Caution Debug: 1963", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1963, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "z0Xw8_BUZUODrGHSZcLHHQ", - "EquipmentPrefabName": "[PaintballGun]", - "FriendlyName": "Paintball Pistol Skin (Roses)", - "GiftDropId": 1964, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGun Valentines Debug: 1964", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1964, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "61e49c13-b414-425f-8e8b-bdcf3d12a5bf", - "EquipmentPrefabName": "[PaintballShotgun]", - "FriendlyName": "Paintball Shotgun Skin (Wood)", - "GiftDropId": 1965, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShotgun Wood Debug: 1965", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1965, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f27af5d7-c741-4457-8c98-8e8791f1a41c", - "EquipmentPrefabName": "[PaintballShotgun]", - "FriendlyName": "Paintball Shotgun Skin (Plaid)", - "GiftDropId": 1966, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShotgun Plaid Debug: 1966", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1966, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ZMAx_-B_7kWy6-TLXx8g6Q", - "EquipmentPrefabName": "[PaintballShotgun]", - "FriendlyName": "Paintball Shotgun Skin (Watermelon)", - "GiftDropId": 1968, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShotgun Watermeon Debug: 1968", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1968, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "CwIBKjm3G0-xUGt_9Gf7UQ", - "EquipmentPrefabName": "[PaintballShotgun]", - "FriendlyName": "Paintball Shotgun Skin (Caution)", - "GiftDropId": 1969, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShotgun Caution Debug: 1969", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1969, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "5dcf8a2e-6fa6-4007-ac1e-73dd53c4c247", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Purple)", - "GiftDropId": 1970, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "Basketball Purple Debug: 1970", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1970, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e6899422-ab2f-4bd9-8e98-aef950ec27b6", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Blue)", - "GiftDropId": 1971, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "Basketball Blue Debug: 1971", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1971, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d6d22997-fe39-4ffa-b1b3-4955368c829a", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Vitton)", - "GiftDropId": 1972, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Basketball Vitton Debug: 1972", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1972, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "56582acf-c7a0-4aff-b3aa-2fdea4d254a3", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Pride)", - "GiftDropId": 1973, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": "Basketball Rainbow Debug: 1973", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1973, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "56c9a6db-0f54-482c-aba9-e265f899771d", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Coach Select)", - "GiftDropId": 1974, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": "Basketball CoachSelect Debug: 1974", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1974, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "WOWwmg7jg0mH2g4LJUp6fA", - "EquipmentPrefabName": "[Basketball]", - "FriendlyName": "Basketball Skin (Cozy)", - "GiftDropId": 1975, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "Basketball Cozy Debug: 1975", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1975, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "174adb53-bc6e-4fcf-b03d-a00fc3deeb49", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Wood)", - "GiftDropId": 1977, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Wood Debug: 1977", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1977, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "fd367329-b8b2-4d44-825a-da16092751e3", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Purple)", - "GiftDropId": 1978, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Purple Debug: 1978", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1978, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "a6c869d9-8f30-4ce6-a7ea-cb7ea9f9d492", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Pirate)", - "GiftDropId": 1979, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Pirate Debug: 1979", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1979, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "jZ7wlwRxgUuWYuLasbnG8w", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Cyber Sunset)", - "GiftDropId": 1980, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield 80s Sunset Debug: 1980", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1980, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "QTyRLpDB3UuReHQqrKxb5A", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Gingerbread)", - "GiftDropId": 1981, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Gingerbread Debug: 1981", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1981, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "gfGhbEMx_kCRdO-6vPOh3g", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Plaid)", - "GiftDropId": 1982, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Plaid Debug: 1982", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1982, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ClJApV0LC0mxh0UiYhaXGQ", - "EquipmentPrefabName": "[PaintballShield]", - "FriendlyName": "Paintball Shield Skin (Caution)", - "GiftDropId": 1983, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballShield Caution Debug: 1983", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1983, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "2389fce4-3ab2-4e05-918c-845eb8538bed", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Goblin)", - "GiftDropId": 1985, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Goblin Debug: 1985", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1985, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "93f5418e-a03d-4074-804c-daa0e374dd9f", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Purple)", - "GiftDropId": 1986, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Purple Debug: 1986", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1986, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "735b06c6-1b78-4f60-9291-a414a96cd228", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Wood)", - "GiftDropId": 1987, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield wood Debug: 1987", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1987, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "affbab2d-3200-4512-a140-685fdc5570c6", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Yellow)", - "GiftDropId": 1988, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Yellow Debug: 1988", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1988, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "a363ba1b-2f70-4c5f-943a-f45cfa59122b", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Stone)", - "GiftDropId": 1989, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Rock Debug: 1989", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1989, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "eb90210a-6d2d-4429-b1e0-3285333685fc", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Hearts)", - "GiftDropId": 1990, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Valentine Debug: 1990", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1990, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "439be0eb-4d1e-4c80-97f8-b4636d0ce94b", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Pride)", - "GiftDropId": 1991, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Pride Debug: 1991", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1991, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "k0BVix46IEmgVrqUmFU3-Q", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Plaid)", - "GiftDropId": 1992, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Plaid Debug: 1992", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1992, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "RQCgWA3Pf0KTqznUR58-lw", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Caution)", - "GiftDropId": 1993, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Caution Debug: 1993", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1993, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "-rbKD_ztMUq69Nv4tLrrVA", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Snowflake)", - "GiftDropId": 1994, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Snowflake Debug: 1994", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1994, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "L9usPszLFkiA6xs32es2Lw", - "EquipmentPrefabName": "[QuestShield]", - "FriendlyName": "Quest Shield Skin (Neon)", - "GiftDropId": 1995, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestShield Neon RR+ Debug: 1995", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1995, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "33a7a3dc-5266-4075-b56f-5eaa2c400e9f", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Caution)", - "GiftDropId": 1996, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Caution Debug: 1996", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1996, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "db91b61b-ab32-4895-8f5a-0212c1283cbb", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Vitton)", - "GiftDropId": 1997, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Vitton Debug: 1997", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1997, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "89b1fbbc-e7be-440b-8b22-8fd379c1a568", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Pink)", - "GiftDropId": 1998, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol PINK Debug: 1998", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1998, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "8a2a3219-fed0-4403-9061-451d162307c2", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Candy Cane)", - "GiftDropId": 1999, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol CandyCane Debug: 1999", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 1999, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "5nQ2kF6h6kunbk5z18Lozg", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Frankenstein)", - "GiftDropId": 2000, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Frakenblaster Debug: 2000", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2000, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "0cFcVYCLTU6CKhr9uADrbw", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Recasso)", - "GiftDropId": 2001, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Recasso Debug: 2001", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2001, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "aByJShU520OzdOXBV8o0Dg", - "EquipmentPrefabName": "[Quest_SciFi_Pistol]", - "FriendlyName": "Laser Pistol Skin (Purple Plaid)", - "GiftDropId": 2002, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Pistol Plaid Debug: 2002", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2002, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "546b3a57-13d4-4c35-ab3a-bbb7d466f0b8", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Caution)", - "GiftDropId": 2004, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Caution Debug: 2004", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2004, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "bafacc36-02c6-408c-a3f5-8c2aa07a68db", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Bark)", - "GiftDropId": 2005, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Arbor Debug: 2005", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2005, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "u60IW1Gt10eC-8SlZmQUNQ", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Recasso)", - "GiftDropId": 2006, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Recasso Debug: 2006", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2006, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "dEmh0tniCkeYBY1EdD09jA", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Zombie)", - "GiftDropId": 2007, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Zombie Debug: 2007", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2007, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "jzgz_HrPAUqOeqx3uNXVUA", - "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", - "FriendlyName": "Laser Burst Rifle Skin (Purple Plaid)", - "GiftDropId": 2008, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi AutomaticGun Plaid Debug: 2008", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2008, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "55a9c1e8-07e2-4457-86f2-75fd5e67b1f3", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Caution)", - "GiftDropId": 2009, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Caution Debug: 2009", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2009, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "83d7cca0-2c5d-41b2-a5b2-f79fd89f3037", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Pink)", - "GiftDropId": 2010, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun PINK Debug: 2010", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2010, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "bb36b722-16dc-4172-b61f-237dc1240040", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Jack-o'-lantern)", - "GiftDropId": 2011, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Jackolantern Debug: 2011", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2011, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "cd497ae2-6382-42f2-9f92-93d5141588c3", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Hearts)", - "GiftDropId": 2012, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Valentine Debug: 2012", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2012, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "pIRihZheSEW2Ld3VTLkB-g", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Purple Plaid)", - "GiftDropId": 2013, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Plaid Debug: 2013", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2013, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "gjuFgDp-LUWPi1mPCKyqbA", - "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", - "FriendlyName": "Laser Shotgun Skin (Shamrock)", - "GiftDropId": 2014, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi Shotgun Shamrock Debug: 2014", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2014, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "63a867d7-ccea-4905-b6e0-e6dcfba06f9e", - "EquipmentPrefabName": "[Quest_SciFi_RailGun]", - "FriendlyName": "Laser Railgun Skin (Caution)", - "GiftDropId": 2015, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi RailGun Caution Debug: 2015", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2015, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "46977ca7-ee75-4e2a-b8aa-0763879f8a96", - "EquipmentPrefabName": "[Quest_SciFi_RailGun]", - "FriendlyName": "Laser Railgun Skin (Pink)", - "GiftDropId": 2016, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi RailGun PINK Debug: 2016", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2016, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "X9gTAbp0Sk6nadpTBseRrg", - "EquipmentPrefabName": "[Quest_SciFi_RailGun]", - "FriendlyName": "Laser Railgun Skin (Lifeguard)", - "GiftDropId": 2017, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi RailGun LifeGuard Debug: 2017", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2017, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "_flhynGnykyZL7F83B7rJQ", - "EquipmentPrefabName": "[Quest_SciFi_RailGun]", - "FriendlyName": "Laser Railgun Skin (Purple Plaid)", - "GiftDropId": 2018, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest SciFi RailGun Plaid Debug: 2018", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2018, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "c4d70545-cdf1-4fb1-924b-613de0327faf", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Vitton)", - "GiftDropId": 2019, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Vitton Debug: 2019", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2019, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6bba14be-f207-4933-b09f-f0fd3e28c10c", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Candy Cane)", - "GiftDropId": 2020, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow CandyCane Debug: 2020", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2020, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "1d09c8e4-78c2-49f9-acb7-8f0b3ff6a5ed", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Recasso)", - "GiftDropId": 2021, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Recasso Debug: 2021", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2021, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "MsFoMeUZ8Eq2qX9SrOtRPA", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Waves)", - "GiftDropId": 2022, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Waves Debug: 2022", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2022, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "T6PzFfg41UaQ7EAqts6gsw", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Crossbone)", - "GiftDropId": 2023, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Bone Debug: 2023", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2023, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "jHaoDSAtikyAI82lO53o9g", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Dryad Summer)", - "GiftDropId": 2024, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Dryad Debug: 2024", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2024, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ESQ0qOlgrkCc8MbUXGnF8A", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Green Plaid)", - "GiftDropId": 2025, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Plaid Debug: 2025", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2025, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "QEwDZYj_OEi5l86LBnuYGw", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Stone)", - "GiftDropId": 2026, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Rock Debug: 2026", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2026, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "VHFKZVhiRkylcxnxzCKUuw", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Caution)", - "GiftDropId": 2027, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Caution Debug: 2027", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2027, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Ys9UQ5b7fEyKxnaek-ihfQ", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Dryad Fall)", - "GiftDropId": 2028, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Dryad Fall Debug: 2028", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2028, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "CZAIad-ME0O0iIy77MRxBw", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Dryad Winter)", - "GiftDropId": 2029, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Winter Debug: 2029", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2029, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ych0ntYcK0eiq67bCLlbew", - "EquipmentPrefabName": "[Crossbow]", - "FriendlyName": "Crossbow Skin (Dryad Spring)", - "GiftDropId": 2030, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Spring Debug: 2030", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2030, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f5901f11-b315-4261-9474-2da207e4a229", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Fashion)", - "GiftDropId": 2031, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Vitton Debug: 2031", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2031, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "52c6a138-10c5-4aab-9c3b-04b50c9a2dc5", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Ghost)", - "GiftDropId": 2032, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Ghost Debug: 2032", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2032, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e738d936-0f75-423b-88bb-f626ffba573a", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Stone)", - "GiftDropId": 2033, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Rock Debug: 2033", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2033, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "XpxqrY6RYkafs-sd3Z0ZLw", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Pride)", - "GiftDropId": 2034, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Rainbow Debug: 2034", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2034, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "JBp7CxPhrUC5hnn2EISUFA", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Dryad Summer)", - "GiftDropId": 2035, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Dryad Debug: 2035", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2035, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "T8666vuehkObksBdVbla9g", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Green Plaid)", - "GiftDropId": 2036, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Plaid Debug: 2036", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2036, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "YajcGvBcTEaf_MjCbxOciw", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Caution)", - "GiftDropId": 2037, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Caution Debug: 2037", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2037, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "XKFuhM3zikyxTYtTzuPb_A", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Dryad Fall)", - "GiftDropId": 2038, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Dryad Fall Debug: 2038", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2038, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "uPwTBnfWwkWXuyAaAMqeQA", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Dryad Winter)", - "GiftDropId": 2039, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Winter Debug: 2039", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2039, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "gl_tlo_t7U-H308Omy13lw", - "EquipmentPrefabName": "[Longbow]", - "FriendlyName": "Bow Skin (Dryad Spring)", - "GiftDropId": 2040, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Longbow Spring Debug: 2040", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2040, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "VYF9NGZBgU6TOo9ayjgBEQ", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Green)", - "GiftDropId": 2054, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Green Debug: 2054", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2054, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "WwtFcRluQkmnCI_qH75L_Q", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Orange)", - "GiftDropId": 2055, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Orange Debug: 2055", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2055, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "iRtlLKI-X0S9oYUWLenAKQ", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Purple)", - "GiftDropId": 2056, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Purple Debug: 2056", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2056, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "tvjYGeRdwEqnr9mf84WgcQ", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Red)", - "GiftDropId": 2057, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Red Debug: 2057", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2057, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Q7Tr_0DXAkOdr61UXiocow", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Yellow)", - "GiftDropId": 2058, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Yellow Debug: 2058", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2058, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "c1VRbmDGHUS7KiSgwj5prQ", - "EquipmentPrefabName": "[MakerPen]", - "FriendlyName": "Maker Pen Skin (Pink)", - "GiftDropId": 2059, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "MakerPen Pink Debug: 2059", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2059, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6a6b0ecf-286d-4361-92ff-7027c440dc3c", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Plaid)", - "GiftDropId": 2063, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Plaid Debug: 2063", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2063, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d906709c-e08e-4273-8ba1-e072e0d25957", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Candy Cane)", - "GiftDropId": 2064, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintBallRifleScoped CandyCane Debug: 2064", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2064, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3rBevbIk1EusFnFaXAh3qA", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Gingerbread)", - "GiftDropId": 2065, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Gingerbread Debug: 2065", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2065, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "0dM2SfqGR0SmtO5ufTWfUQ", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Comic)", - "GiftDropId": 2067, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Comic Debug: 2067", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2067, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "btB2z7ybskSYrn9Nzhfhxg", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Wood)", - "GiftDropId": 2068, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Wood Debug: 2068", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2068, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "b_iiMMYayU-an7hOlCzPIA", - "EquipmentPrefabName": "[PaintballRifleScoped]", - "FriendlyName": "Paintball Sniper Skin (Caution)", - "GiftDropId": 2069, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballRifleScoped Caution Debug: 2069", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2069, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d217ee4c-22f3-4f33-bf7c-9d4ee9c30e29", - "EquipmentPrefabName": "[Crossbow_Hunter]", - "FriendlyName": "Hunter's Crossbow Skin (Stone)", - "GiftDropId": 2070, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Hunter Rock Debug: 2070", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2070, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "cFMh54GoHEeHZEERSRR8kQ", - "EquipmentPrefabName": "[Crossbow_Hunter]", - "FriendlyName": "Hunter's Crossbow Skin (Green Plaid)", - "GiftDropId": 2071, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Hunter Plaid Debug: 2071", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2071, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "RRCvths6eUmAAr9hzGFT0g", - "EquipmentPrefabName": "[Crossbow_Hunter]", - "FriendlyName": "Hunter's Crossbow Skin (Caution)", - "GiftDropId": 2072, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow Hunter Caution Debug: 2072", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2072, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "-X_Hm6dIekqoHTY2VMMLeA", - "EquipmentPrefabName": "[Crossbow_Hunter]", - "FriendlyName": "Hunter's Crossbow Skin (Shark)", - "GiftDropId": 2073, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Crossbow SharkHunter Debug: 2073", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2073, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "0ee04d78-5a17-4a38-ae67-b576a41fc200", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Extra)", - "GiftDropId": 2074, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Extra Debug: 2074", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2074, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "431567d2-4df2-43eb-b632-3d79aa7c013c", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Excalibur)", - "GiftDropId": 2075, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Gold Debug: 2075", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2075, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "uLNdhrrAC0ybxC2XkBnnVQ", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Gold)", - "GiftDropId": 20756767, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 20756767, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f03dee6a-79b8-4906-9abb-a821748d97a9", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Topaz)", - "GiftDropId": 2076, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Red Debug: 2076", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2076, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3e46fb2d-bb3f-42ed-83ef-f5716860725c", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Stone)", - "GiftDropId": 2077, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Rock Debug: 2077", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2077, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "eecdf81c-7ba2-40ba-9d6c-f461708cce16", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Comic) ", - "GiftDropId": 2078, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Comic Debug: 2078", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2078, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "SbEIObEmhkKQniANHqNekg", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Jack-o'-Lantern)", - "GiftDropId": 2079, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Pumpkin Debug: 2079", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2079, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Kitcy2AVB0-OdljiEAI2Pw", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Recasso)", - "GiftDropId": 2080, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Recasso Debug: 2080", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2080, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "K9TzHZPDwU-ewzLYkr_1cg", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Gingerbread) ", - "GiftDropId": 2081, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Gingerbread Debug: 2081", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2081, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "wioj1rR1lkCx7f-oiCHcOw", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Corn)", - "GiftDropId": 2082, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword CornCob Debug: 2082", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2082, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "m1JMjJYpSUiXj5897orm2Q", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Green Plaid)", - "GiftDropId": 2083, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Plaid Debug: 2083", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2083, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d97pbQMk9UWpEN0yoOE9Rg", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Caution)", - "GiftDropId": 2084, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Caution Debug: 2084", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2084, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "DRXoMS9phEG2fkasja7sEw", - "EquipmentPrefabName": "[QuestSword]", - "FriendlyName": "Sword Skin (Lava)", - "GiftDropId": 2085, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "QuestSword Lava Debug: 2085", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2085, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "993f8b81-cb2e-44e4-88a1-b841af1f0e69", - "EquipmentPrefabName": "[Grenade]", - "FriendlyName": "Paint Grenade (Pirate)", - "GiftDropId": 2086, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Grenade Pirate Debug: 2086", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2086, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e8e42ef6-9ab6-44f4-84d5-117154a4d13e", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Ghost)", - "GiftDropId": 2087, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Ghost Debug: 2087", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2087, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "yG6xFxkoS0iIDt7wEj5Hqw", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Witch)", - "GiftDropId": 2088, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Witch Star Debug: 2088", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2088, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3pE7zA-DjkqP1Ch7__-31w", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Jack Frost)", - "GiftDropId": 2089, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Ice Debug: 2089", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2089, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "m_otHTEKF0KQljsOc-JENg", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Stone)", - "GiftDropId": 2090, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Wood Debug: 2090", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2090, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "CyrdBvIbXUq_TsXFliWk1A", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Green Plaid)", - "GiftDropId": 2091, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Plaid Debug: 2091", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2091, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "vfzrRHn24E67BK8Bgy60xA", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Caution)", - "GiftDropId": 2092, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Caution Debug: 2092", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2092, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "QnLM4Qw-L0ml_mgReFweIw", - "EquipmentPrefabName": "[Quest_Goblin_Wand]", - "FriendlyName": "Wand Skin (Trident)", - "GiftDropId": 2093, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Quest Goblin Wand Trident Debug: 2093", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2093, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "502f40c3-1c00-4c3f-bfc7-c897df8af37e", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Plaid)", - "GiftDropId": 2094, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Plaid Debug: 2094", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2094, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f34e6270-bcfa-42f2-80d5-69c1bbd34983", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Comic)", - "GiftDropId": 2095, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Comic Debug: 2095", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2095, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "8ZAwSDtXlkqlnBLOpfVTVg", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Gingerbread)", - "GiftDropId": 2096, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Gingerbread Debug: 2096", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2096, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3UmIhvqmkU-aWxFDFd4QDg", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Honey)", - "GiftDropId": 2097, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Honey Debug: 2097", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2097, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "pPpYY9j0Dku2gtbKoUOCCg", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Eggcellent)", - "GiftDropId": 2098, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher EasterEgg Debug: 2098", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2098, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "9gBl778RvUeSC8837Gurog", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Wood)", - "GiftDropId": 2099, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Wood Debug: 2099", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2099, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "tcMMGKcmhkuM82ISCZ-3AQ", - "EquipmentPrefabName": "[PaintballGrenadeLauncher]", - "FriendlyName": "Paintball Grenade Launcher (Caution)", - "GiftDropId": 2100, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballGrenadeLauncher Caution Debug: 2100", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2100, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6261a846-e4f8-4e6e-8aa0-68f38cd788d4", - "EquipmentPrefabName": "[DodgeballBall]", - "FriendlyName": "Dodgeball Skin (Comic)", - "GiftDropId": 2101, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DodgeballBall Comic Debug: 2101", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2101, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6ff63f8f-4bcc-4b69-8d89-8b886d19e239", - "EquipmentPrefabName": "[DodgeballBall]", - "FriendlyName": "Dodgeball Skin (Recasso)", - "GiftDropId": 2102, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DodgeballBall Recasso Debug: 2102", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2102, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f55dda45-c17e-4237-a638-9f326d306e7d", - "EquipmentPrefabName": "[DodgeballBall]", - "FriendlyName": "Dodgeball Skin (Goblin)", - "GiftDropId": 2103, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DodgeballBall Goblin Debug: 2103", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2103, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "lIpyvEMWqUyv41gTp3YZ1A", - "EquipmentPrefabName": "[DodgeballBall]", - "FriendlyName": "Dodgeball Skin (Jack-o'-Lantern)", - "GiftDropId": 2105, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "DodgeballBall Pumpkin Debug: 2105", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2105, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "fae1abe3-6bfd-4407-b34e-e2c1b3b03032", - "EquipmentPrefabName": "[SoccerShield]", - "FriendlyName": "Soccer Shield Skin (Gingerbread)", - "GiftDropId": 2106, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "SoccerShield Gingerbread Debug: 2106", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2106, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "523e3615-4633-41a3-9b2d-17d3207a684b", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Camo)", - "GiftDropId": 2107, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Camo Debug: 2107", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2107, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "6c3b26cd-b38e-492b-a124-759cbcec1396", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Camping)", - "GiftDropId": 2108, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Camping Pattern Debug: 2108", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2108, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "12b54ad2-3847-41db-9ed4-88e8dad63024", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Tiger)", - "GiftDropId": 2109, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Tiger Debug: 2109", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2109, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "5c848a04-f528-423b-8be1-4b5cd43a75c2", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Denim)", - "GiftDropId": 2110, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Denim Debug: 2110", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2110, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e93f5ab7-e9bf-4652-8a7c-2ae120f25f87", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Recasso)", - "GiftDropId": 2111, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Recasso Debug: 2111", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2111, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "w2NNBTTCVEah2WlP0JHezQ", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Hearts)", - "GiftDropId": 2112, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack Valentine Debug: 2112", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2112, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "70uy5UJhhEy1aynKM4MAsQ", - "EquipmentPrefabName": "[RecRoyale_Backpack]", - "FriendlyName": "Backpack Skin (Fall)", - "GiftDropId": 2113, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "RecRoyale Backpack FallLeaves Debug: 2113", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2113, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d218ae45-8534-4f96-b2ed-1cf281bc3578", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Gold)", - "GiftDropId": 2115, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Wood Debug: 2115", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2115, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "e2844f84-ab44-4141-9a0a-bd5da7caa4f6", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Yellow OSnap)", - "GiftDropId": 2116, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Disposable Debug: 2116", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2116, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "1838fa61-de10-4e09-b24a-f5a1bc942600", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Green OSnap)", - "GiftDropId": 2117, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Green Debug: 2117", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2117, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "fSbzGxsjKE-cwtFFX6dJQw", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Sci-fi)", - "GiftDropId": 2118, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Carpet Debug: 2118", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2118, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ATGtNjai20miFwBUOVIMuw", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Two Tone)", - "GiftDropId": 2119, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera TwoTone Debug: 2119", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2119, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "znrJSCX_SkS-kIPqMERoDg", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Camping)", - "GiftDropId": 2120, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Camping Debug: 2120", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2120, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "g5u0weNLmkCLeUXFUVn74Q", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Comic)", - "GiftDropId": 2121, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Comic Debug: 2121", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2121, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "QQALCzCF-0ClDWqmmciHAQ", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Hearts)", - "GiftDropId": 2122, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Heart Debug: 2122", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2122, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "SkTa53OzM0u82YPuZAl9aw", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Caution)", - "GiftDropId": 2123, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Caution Debug: 2123", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2123, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "sE4_-ZVa2EC4MZfGGsExzQ", - "EquipmentPrefabName": "[ShareCamera]", - "FriendlyName": "Camera Skin (Plaid)", - "GiftDropId": 2124, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "ShareCamera Plaid Debug: 2124", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2124, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "KiVWBp5_J0qCLuizAJGcAg", - "EquipmentPrefabName": "[Sandbox_D4]", - "FriendlyName": "D4 (Pink)", - "GiftDropId": 2125, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D4 Pink Debug: 2125", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2125, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "x3Cv42hIkkaNIy7fHZiWYg", - "EquipmentPrefabName": "[Sandbox_D4]", - "FriendlyName": "D4 (Bone White)", - "GiftDropId": 2126, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D4 BoneWhite Debug: 2126", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2126, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "_2jxSTYSpEykZ_O91oDAzg", - "EquipmentPrefabName": "[Sandbox_D4]", - "FriendlyName": "D4 (Turquoise)", - "GiftDropId": 2127, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D4 Turquoise Debug: 2127", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2127, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "WxWaXY61mUuNe_f6SgECnA", - "EquipmentPrefabName": "[Sandbox_D4]", - "FriendlyName": "D4 (Pewter)", - "GiftDropId": 2128, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D4 Pewter Debug: 2128", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2128, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "TxIu8CUjykGDMr5RIJcNVQ", - "EquipmentPrefabName": "[Sandbox_D6]", - "FriendlyName": "D6 (Pink)", - "GiftDropId": 2129, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D6 Pink Debug: 2129", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2129, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Fn0gcj17c06tA9s98CKwAg", - "EquipmentPrefabName": "[Sandbox_D6]", - "FriendlyName": "D6 (Bone White)", - "GiftDropId": 2130, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D6 BoneWhite Debug: 2130", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2130, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "HnVo08F-zk-YeikERFa1Yw", - "EquipmentPrefabName": "[Sandbox_D6]", - "FriendlyName": "D6 (Turquoise)", - "GiftDropId": 2131, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D6 Turquoise Debug: 2131", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2131, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "5U_KiCi_90-eWucQ68VdZQ", - "EquipmentPrefabName": "[Sandbox_D6]", - "FriendlyName": "D6 (Pewter)", - "GiftDropId": 2132, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D6 Pewter Debug: 2132", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2132, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "AQXXckjNZ0uzPMTcP1C3Kg", - "EquipmentPrefabName": "[Sandbox_D8]", - "FriendlyName": "D8 (Pink)", - "GiftDropId": 2133, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D8 Pink Debug: 2133", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2133, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "d_CbCG3DmUCtWGWYHioghg", - "EquipmentPrefabName": "[Sandbox_D8]", - "FriendlyName": "D8 (Bone White)", - "GiftDropId": 2134, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D8 BoneWhite Debug: 2134", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2134, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "f45tTZp4KUextmAsX8X9Hw", - "EquipmentPrefabName": "[Sandbox_D8]", - "FriendlyName": "D8 (Turquoise)", - "GiftDropId": 2135, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D8 Turquoise Debug: 2135", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2135, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "77cRA0O4GUqd6nr9QLefQA", - "EquipmentPrefabName": "[Sandbox_D8]", - "FriendlyName": "D8 (Pewter)", - "GiftDropId": 2136, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D8 Pewter Debug: 2136", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2136, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ZM543HEyl0G6n7P5rDMEWw", - "EquipmentPrefabName": "[Sandbox_D10]", - "FriendlyName": "D10 (Pink)", - "GiftDropId": 2137, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D10 Pink Debug: 2137", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2137, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "GjQwBmNnK0ukv0hEEHK8tw", - "EquipmentPrefabName": "[Sandbox_D10]", - "FriendlyName": "D10 (Bone White)", - "GiftDropId": 2138, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D10 BoneWhite Debug: 2138", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2138, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "SnSOf-GZ2kastpF5KWxT-Q", - "EquipmentPrefabName": "[Sandbox_D10]", - "FriendlyName": "D10 (Turquoise)", - "GiftDropId": 2139, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D10 Turquoise Debug: 2139", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2139, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "I161QAym2kqPi5wXIHCt8A", - "EquipmentPrefabName": "[Sandbox_D10]", - "FriendlyName": "D10 (Pewter)", - "GiftDropId": 2140, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D10 Pewter Debug: 2140", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2140, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "EoV2ZoLR2UWY898p8j7qGQ", - "EquipmentPrefabName": "[Sandbox_D12]", - "FriendlyName": "D12 (Pink)", - "GiftDropId": 2141, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D12 Pink Debug: 2141", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2141, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "heFLfpPNd0-nhLOFpUCnpA", - "EquipmentPrefabName": "[Sandbox_D12]", - "FriendlyName": "D12 (Bone White)", - "GiftDropId": 2142, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D12 BoneWhite Debug: 2142", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2142, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ub6apg3zEUiCp3k81JjQGw", - "EquipmentPrefabName": "[Sandbox_D12]", - "FriendlyName": "D12 (Turquoise)", - "GiftDropId": 2143, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D12 Turquoise Debug: 2143", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2143, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "2gYYjbVGqkiOefY2xjOxiQ", - "EquipmentPrefabName": "[Sandbox_D12]", - "FriendlyName": "D12 (Pewter)", - "GiftDropId": 2144, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D12 Pewter Debug: 2144", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2144, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "Des7txtX0EO-7NiooR0-ow", - "EquipmentPrefabName": "[Sandbox_D20]", - "FriendlyName": "D20 (Pink)", - "GiftDropId": 2145, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D20 Pink Debug: 2145", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2145, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "gXOOKrQEYE-FmS3uXWj1hA", - "EquipmentPrefabName": "[Sandbox_D20]", - "FriendlyName": "D20 (Bone White)", - "GiftDropId": 2146, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D20 BoneWhite Debug: 2146", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2146, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "DrG0ntsyPUSv8ra0m-Hhaw", - "EquipmentPrefabName": "[Sandbox_D20]", - "FriendlyName": "D20 (Turquoise)", - "GiftDropId": 2147, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D20 Turquoise Debug: 2147", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2147, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "H3vrSi45AU6lshChLnr19Q", - "EquipmentPrefabName": "[Sandbox_D20]", - "FriendlyName": "D20 (Pewter)", - "GiftDropId": 2148, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Sandbox D20 Pewter Debug: 2148", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2148, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "c458a6ae-a1ea-468a-89b8-4c9a85cd3cde", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Caution)", - "GiftDropId": 2150, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle Caution Debug: 2150", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2150, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "m_qzPvDPF0KPhLd59wzr5A", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Fall)", - "GiftDropId": 2151, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle Fall Debug: 2151", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2151, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "996662ad-631d-4a81-8a8b-74ace4833279", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Pirate)", - "GiftDropId": 2152, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle Pirate Debug: 2152", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2152, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "3aaef60d-142f-4a0a-bea3-f5d99ab62dd5", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Plaid)", - "GiftDropId": 2153, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle Plaid Debug: 2153", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2153, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "49d88b73-3c8a-4f4d-8a69-128fa5474e82", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (PS Plus)", - "GiftDropId": 2154, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle PSPLUS Debug: 2154", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2154, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "357fe573-fee7-467f-93a7-5e61afb024b8", - "EquipmentPrefabName": "[PaintballAssaultRifle]", - "FriendlyName": "Paintball Burst Rifle Skin (Wood)", - "GiftDropId": 2155, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "PaintballAssaultRifle wood Debug: 2155", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2155, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "y_FesIT5jkmb61JIu7tfsw", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Wood)", - "GiftDropId": 2157, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower Wood Debug: 2157", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2157, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "GbHNkVbVgUCoirMhOGkSTA", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Plaid)", - "GiftDropId": 2158, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower Plaid Debug: 2158", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2158, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "qhhhJeHVx0KLnGJrAGIn9g", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Caution)", - "GiftDropId": 2159, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower Caution Debug: 2159", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2159, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "OFEdf4dRC0a3nHugXVOXnA", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Fireworks)", - "GiftDropId": 2160, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower Fireworks Debug: 2160", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2160, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "VTVy8cweC0K2ca1nTXMu0g", - "EquipmentPrefabName": "[Paintball_PaintThrower]", - "FriendlyName": "Paintball Paint Thrower Skin (Double Drencher)", - "GiftDropId": 2161, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Paintball PaintThrower DoubleDrencher Debug: 2161", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2161, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "ou23DX__T0qFPjAXC5WrOQ", - "EquipmentPrefabName": "[Bucket]", - "FriendlyName": "Bucket Skin (Fashion)", - "GiftDropId": 2164, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 5, - "SubscribersOnly": false, - "Tooltip": "Bucket Fashion Debug: 2164", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2164, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "frOMH6WxDEG1fBqC4_83vg", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Film (Black & White)", - "GiftDropId": 2168, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "Take some black and white photos. Debug: 2168", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 20, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2168, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 20, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "m0bVLwWGj0GuIBSb6wCk6Q", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Film (Dawn)", - "GiftDropId": 2169, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "Take some sun-soaked photos. Debug: 2169", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 20, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2169, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 20, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "A5M-yf9tgUihq1uab3v58g", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Film (Sepia)", - "GiftDropId": 2174, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "Take some old-timey photos. Debug: 2174", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 20, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2174, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 20, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "-hy0qD-iUk-v4NHxNzanmg", - "Context": 4004, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "High Five Potion (Golden)", - "GiftDropId": 2176, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "Give golden high fives for a time. Debug: 2176", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 30, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2176, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 30, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "VQSgL2pTLkWx4B3kwYG7UA", - "Context": 4014, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "High Five Potion (Magic)", - "GiftDropId": 2179, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "Give magical high fives for a time. Debug: 2179", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 30, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2179, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 30, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "xwQWBB_fekmTqRc2LB92cg", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "87 Flavor Cake", - "GiftDropId": 2181, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2181", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2181, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "ZuvkidodzkuOfGLDnTOFyg", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Assorted Donuts", - "GiftDropId": 2182, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": "A dozen assorted donuts to share with friends. Debug: 2182", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2182, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "iiGTvhOCHkOTNJhb16Zbyw", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Fancy Bubbly", - "GiftDropId": 2183, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": " Debug: 2183", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2183, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "EmPvh3I6L0uK_1i8Wy_ylQ", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Candy Apples", - "GiftDropId": 2184, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": " Debug: 2184", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2184, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "Sk_1sm88ZU2zpWn01Lv7hw", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Celebration Cake", - "GiftDropId": 2185, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2185", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2185, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "5hIAZ9wg5EyG1cILf4FS2A", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Cheese Pizza", - "GiftDropId": 2186, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "A cheese pizza to share with friends. Debug: 2186", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 85, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2186, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 85, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "BbJb1_0g4EGJP_CeNrjpew", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chocolate Cake", - "GiftDropId": 2187, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2187", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2187, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "mMCGPgK3tki5S_15q2Z81A", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Chocolate Donuts", - "GiftDropId": 2188, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": "A dozen chocolate donuts to share with friends. Debug: 2188", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2188, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "K9RbXo-4U0q6NbGu8VL1Sw", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Assorted Chocolates", - "GiftDropId": 2189, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "Assorted chocolates to share with friends! Debug: 2189", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2189, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "7OZ5AE3uuUyqa0P-2W1ptg", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Glazed Donuts", - "GiftDropId": 2190, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "A dozen glazed donuts to share with friends. Debug: 2190", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2190, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "_jnjYGBcyEWY5Ub4OezXcA", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Hawaiian Pizza", - "GiftDropId": 2191, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": "A ham and pineapple pizza to share with friends. Debug: 2191", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2191, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "P15H1ONBhk-5DYYjid1ttg", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Tray of Lattes", - "GiftDropId": 2192, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": "Four hot lattes to share with friends. Debug: 2192", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2192, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "mq23W-RSP0G8iGNLdrcpUw", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Pepperoni Pizza", - "GiftDropId": 2193, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": "A pepperoni pizza to share with friends. Debug: 2193", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2193, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "QRx0aSTT9keMFdAJMQHdTg", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Popcorn", - "GiftDropId": 2194, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": " Debug: 2194", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2194, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "LwaotjVEBUir0-w8126n_g", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Red Velvet Cake", - "GiftDropId": 2196, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2196", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2196, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "JfnVXFmilU6ysv-VbTAe3A", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Root Beer", - "GiftDropId": 2197, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "A sixer of root beer to share with friends. Debug: 2197", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2197, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "InQ25wQMGkG_bvuD5rf2Ag", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Salted Pretzels", - "GiftDropId": 2198, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "A great snack to share with friends! Debug: 2198", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 75, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2198, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 75, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "wUCIKdJSvEmiQHYMyx4X4w", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Supreme Pizza", - "GiftDropId": 2199, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": "A supreme pizza to share with friends. Debug: 2199", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2199, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "4My42w1D1Uu3-98pXB-x_Q", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Sushi", - "GiftDropId": 2200, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "15 piece premium sushi set to share with friends Debug: 2200", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2200, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "ZtZnYBpKkECJlhHmkj4MiA", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "KO Icon - Bear Claw", - "GiftDropId": 2201, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "When you KO someone this will appear over their head. Debug: 2201", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2201, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "EAhk3ZZdXEmH5wRAXXT24Q", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "KO Icon - Grenade", - "GiftDropId": 2206, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": "When you KO someone this will appear over their head. Debug: 2206", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2206, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "5AJin8T2iEG7BzOPOgx2HA", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "KO Icon - Sword & Shield", - "GiftDropId": 2208, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": "When you KO someone this will appear over their head. Debug: 2208", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2208, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "U38Qe6rhEk6mFvArHfYjng", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "KO Icon - Winged Skull", - "GiftDropId": 2209, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": "When you KO someone this will appear over their head. Debug: 2209", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2209, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "yvqSbK2czkS2sUCRdrGaEw", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "KO Icon - Star Power", - "GiftDropId": 2210, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "When you KO someone this will appear over their head. Debug: 2210", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2210, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "J1WqFNUWo0OBi4LGKPDHWw", - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "KO Icon - Tire Track", - "GiftDropId": 2211, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": "When you KO someone this will appear over their head. Debug: 2211", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2211, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Common Random box", - "GiftDropId": 2454, - "IsQuery": true, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 0, - "SubscribersOnly": false, - "Tooltip": "a random box of Common quality Debug: 2454", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2454, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Uncommon Random box", - "GiftDropId": 2455, - "IsQuery": true, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 10, - "SubscribersOnly": false, - "Tooltip": "a random box of Uncommon quality Debug: 2455", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2455, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Rare Random box", - "GiftDropId": 2456, - "IsQuery": true, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 20, - "SubscribersOnly": false, - "Tooltip": "a random box of Rare quality Debug: 2456", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2456, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Epic Random box", - "GiftDropId": 2457, - "IsQuery": true, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 30, - "SubscribersOnly": false, - "Tooltip": "a random box of Epic quality Debug: 2457", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2457, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Legendary Random box", - "GiftDropId": 2458, - "IsQuery": true, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": 50, - "SubscribersOnly": false, - "Tooltip": "a random box of Legendary quality Debug: 2458", - "Unique": false - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2458, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "0RUmjv2bL0ydbKU61dlqlg", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (PVPeach)", - "GiftDropId": 2554, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2554", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2554, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "H65ddsxAY0m2sccMrF48Aw", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Standee Sandy)", - "GiftDropId": 2555, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2555", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2555, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "yejur5BbR0mevbH-rzgXYA", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Recreational Raspberry)", - "GiftDropId": 2556, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2556", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2556, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "Bjsgo9ddeUCk3zW1-DdJbw", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (H2Oasis)", - "GiftDropId": 2557, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2557", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2557, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "8k_gZA_lrEyJxI19GrcAZg", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Mousebot Magenta)", - "GiftDropId": 2558, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2558", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2558, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "1I8AD333gku-iOQlS6WWlw", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Bucket Orange)", - "GiftDropId": 2559, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2559", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2559, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "aziIarpSREmcT6vihduPwA", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Rebel Rose)", - "GiftDropId": 2560, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2560", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2560, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "yTdx1nVVtECU8Vh7EC8dGA", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Butterfly Blue)", - "GiftDropId": 2561, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2561", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2561, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "XCwNFMT1i0i9Q9gJYTLPUQ", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Cauldron Crimson)", - "GiftDropId": 2562, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2562", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2562, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "QmgjYhH_L0q58eF5SWeDhQ", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Gizmo Grape)", - "GiftDropId": 2563, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2563", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2563, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "53y1prYATU2drZDS-jpaqg", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Propulsion Purple)", - "GiftDropId": 2564, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2564", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2564, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "TylV8M6zjUaadhxHPWAS-w", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Goblin Green)", - "GiftDropId": 2565, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2565", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2565, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "xyHGGFKNWEOTnXloDFahPQ", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (KREQ Red)", - "GiftDropId": 2566, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2566", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2566, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "LBz3a9520kiOOMMOwsTExg", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Frontier Forest)", - "GiftDropId": 2567, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2567", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2567, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "G129V_kVXkSLN2OG8EjSqQ", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Maker Mauve)", - "GiftDropId": 2568, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2568", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2568, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "_2QGtfHzuUSq0eyI84rImw", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Paula's Periwinkle)", - "GiftDropId": 2569, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2569", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2569, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "pQNfh-3DsEGWfiIls6Qf6g", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Pirate Gold)", - "GiftDropId": 2570, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2570", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2570, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "qp_vRXZQPU2rlx_IU1Vr8Q", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Lounge Lavender)", - "GiftDropId": 2571, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2571", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2571, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3ksu_FLaukeJ-YE90jb4Ow", - "AvatarItemType": 1, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "Permanent hair dye (Ranger Roy-Al Blue)", - "GiftDropId": 2572, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "hi Debug: 2572", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2572, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "AvatarItemDesc": "3044adce-90c0-4f66-81f5-39c4fca86fdf,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "ConsumableItemDesc": "", - "Context": 0, - "Currency": 0, - "CurrencyType": 2, - "EquipmentModificationGuid": "", - "EquipmentPrefabName": "", - "FriendlyName": "White Lasertag Glove", - "GiftDropId": 2764, - "IsQuery": false, - "ItemSetFriendlyName": "", - "ItemSetId": 0, - "Rarity": -1, - "SubscribersOnly": false, - "Tooltip": "laser the tag Debug: 2764", - "Unique": true - }, - "IsFeatured": false, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "PurchasableItemId": 2764, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null, - "Type": 0 - } - ], - "Type": 0 - } - ], - "StorefrontType": 3, - "SubscriberDiscountPercent": 0 -} \ No newline at end of file + "NextUpdate": "2226-06-14T00:12:20.1324853Z", + "StoreItems": [ + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "frOMH6WxDEG1fBqC4_83vg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Black & White)", + "GiftDropId": 2168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some black and white photos. Debug: 2168", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "m0bVLwWGj0GuIBSb6wCk6Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Dawn)", + "GiftDropId": 2169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some sun-soaked photos. Debug: 2169", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "A5M-yf9tgUihq1uab3v58g", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Sepia)", + "GiftDropId": 2174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some old-timey photos. Debug: 2174", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "-hy0qD-iUk-v4NHxNzanmg", + "Context": 4004, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Five Potion (Golden)", + "GiftDropId": 2176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Give golden high fives for a time. Debug: 2176", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "VQSgL2pTLkWx4B3kwYG7UA", + "Context": 4014, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Five Potion (Magic)", + "GiftDropId": 2179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Give magical high fives for a time. Debug: 2179", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "xwQWBB_fekmTqRc2LB92cg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "87 Flavor Cake", + "GiftDropId": 2181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2181", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "ZuvkidodzkuOfGLDnTOFyg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Assorted Donuts", + "GiftDropId": 2182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "A dozen assorted donuts to share with friends. Debug: 2182", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "iiGTvhOCHkOTNJhb16Zbyw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Bubbly", + "GiftDropId": 2183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 2183", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "EmPvh3I6L0uK_1i8Wy_ylQ", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Candy Apples", + "GiftDropId": 2184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 2184", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "Sk_1sm88ZU2zpWn01Lv7hw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Celebration Cake", + "GiftDropId": 2185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2185", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "5hIAZ9wg5EyG1cILf4FS2A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheese Pizza", + "GiftDropId": 2186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A cheese pizza to share with friends. Debug: 2186", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 85, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 85, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "BbJb1_0g4EGJP_CeNrjpew", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chocolate Cake", + "GiftDropId": 2187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2187", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "mMCGPgK3tki5S_15q2Z81A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chocolate Donuts", + "GiftDropId": 2188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A dozen chocolate donuts to share with friends. Debug: 2188", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "K9RbXo-4U0q6NbGu8VL1Sw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Assorted Chocolates", + "GiftDropId": 2189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Assorted chocolates to share with friends! Debug: 2189", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "7OZ5AE3uuUyqa0P-2W1ptg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glazed Donuts", + "GiftDropId": 2190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A dozen glazed donuts to share with friends. Debug: 2190", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "_jnjYGBcyEWY5Ub4OezXcA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hawaiian Pizza", + "GiftDropId": 2191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A ham and pineapple pizza to share with friends. Debug: 2191", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "P15H1ONBhk-5DYYjid1ttg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tray of Lattes", + "GiftDropId": 2192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "Four hot lattes to share with friends. Debug: 2192", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "mq23W-RSP0G8iGNLdrcpUw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pepperoni Pizza", + "GiftDropId": 2193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A pepperoni pizza to share with friends. Debug: 2193", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "QRx0aSTT9keMFdAJMQHdTg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Popcorn", + "GiftDropId": 2194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 2194", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "LwaotjVEBUir0-w8126n_g", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Velvet Cake", + "GiftDropId": 2196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2196", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "JfnVXFmilU6ysv-VbTAe3A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Root Beer", + "GiftDropId": 2197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A sixer of root beer to share with friends. Debug: 2197", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "InQ25wQMGkG_bvuD5rf2Ag", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Salted Pretzels", + "GiftDropId": 2198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A great snack to share with friends! Debug: 2198", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 75, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 75, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "wUCIKdJSvEmiQHYMyx4X4w", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Supreme Pizza", + "GiftDropId": 2199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "A supreme pizza to share with friends. Debug: 2199", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "4My42w1D1Uu3-98pXB-x_Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sushi", + "GiftDropId": 2200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "15 piece premium sushi set to share with friends Debug: 2200", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "ZtZnYBpKkECJlhHmkj4MiA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Bear Claw", + "GiftDropId": 2201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2201", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "EAhk3ZZdXEmH5wRAXXT24Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Grenade", + "GiftDropId": 2206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2206", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "5AJin8T2iEG7BzOPOgx2HA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Sword & Shield", + "GiftDropId": 2208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2208", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "U38Qe6rhEk6mFvArHfYjng", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Winged Skull", + "GiftDropId": 2209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2209", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "yvqSbK2czkS2sUCRdrGaEw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Star Power", + "GiftDropId": 2210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2210", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "J1WqFNUWo0OBi4LGKPDHWw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Tire Track", + "GiftDropId": 2211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2211", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Common Random box", + "GiftDropId": 2454, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "a random box of Common quality Debug: 2454", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Uncommon Random box", + "GiftDropId": 2455, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "a random box of Uncommon quality Debug: 2455", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rare Random box", + "GiftDropId": 2456, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "a random box of Rare quality Debug: 2456", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Epic Random box", + "GiftDropId": 2457, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "a random box of Epic quality Debug: 2457", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Legendary Random box", + "GiftDropId": 2458, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "a random box of Legendary quality Debug: 2458", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Gloves (Blue)", + "GiftDropId": 10000, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10000, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,D0tP58wC30mJ00vNxw8hqA,N5wN1l0tYEau5np-9PoIiA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Gloves (Leather)", + "GiftDropId": 10001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,iJW8XGJfU0G12iXarjxhdQ,N5wN1l0tYEau5np-9PoIiA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Gloves (Red)", + "GiftDropId": 10003, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10003, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,Vxq6v55a_kGPODzwB5MC1g,N5wN1l0tYEau5np-9PoIiA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Gloves (Midnight)", + "GiftDropId": 10004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_qXaNbm4yEeyalo372QbvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Goggles", + "GiftDropId": 10005, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10005, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "002a0f2f-1a24-4439-b578-470818ef8325,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turkey Sweater", + "GiftDropId": 10006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "002a0f2f-1a24-4439-b578-470818ef8325,d-scjeOeCESC0rQMKsozsA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Turkey Sweater", + "GiftDropId": 10007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0058a7c6-04ca-4931-b2ff-03c46f99079f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Eggshell Chick Beanie", + "GiftDropId": 10008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0088603e-ec3b-4478-8694-e6fb1989b3f2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angled Bob Hair", + "GiftDropId": 10009, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10009, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "00f0b914-aa22-4d14-9af1-996e1af61f4d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Crown", + "GiftDropId": 10010, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10010, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01107a3f-9a4c-4fb9-8918-e6195e346d42,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Karate Wrist Wrap", + "GiftDropId": 10011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Blue)", + "GiftDropId": 10012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,357eb160-360b-4a63-840d-65d11cc8ffc2,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Green)", + "GiftDropId": 10013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Black)", + "GiftDropId": 10014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,a38254c0-00e3-429b-9d5d-b9e6a9812e69,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Red)", + "GiftDropId": 10015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3a9b576-5433-4305-bd96-b08820c09212,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (White)", + "GiftDropId": 10016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3KmqVuMQkCYK6sVTMOTOA,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Purple)", + "GiftDropId": 10017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,RKmRHk2N_U2gd91nybo6vg,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Yellow)", + "GiftDropId": 10018, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10018, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01d0fc12-3ebe-42e1-8caa-5513a40436c1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Bowtie", + "GiftDropId": 10019, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10019, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Shirt (Gray)", + "GiftDropId": 10020, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10020, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,17b16982-871c-476a-860f-f6953c89ee8c,5a6db6ba-2a0f-4399-b537-dd78db94bf90,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Shirt (Red)", + "GiftDropId": 10021, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10021, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,8c94e45c-6605-4b4f-9ba4-2c6c6e557228,5a6db6ba-2a0f-4399-b537-dd78db94bf90,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Shirt (Blue)", + "GiftDropId": 10022, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10022, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "022ce375-ed02-479d-b87d-9d72d126bbd4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Wings", + "GiftDropId": 10023, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10023, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "022ce375-ed02-479d-b87d-9d72d126bbd4,H6fcuLxeBUSY3oERFc-plA,oGrNKZLpMU2bLwNEe4MPnw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Wings (Lilac)", + "GiftDropId": 10025, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10025, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02a5b48c-abba-4385-967b-ba900424829e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Monocle", + "GiftDropId": 10026, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10026, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Tan)", + "GiftDropId": 10027, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10027, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,msOFHoFN9UORkeXXtdqBsw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Grey)", + "GiftDropId": 10028, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10028, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,Z1Ib9r_fkUqgoZk0uid_Xw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Black)", + "GiftDropId": 10029, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10029, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03ce3b52-0d0c-4b72-a027-ade53b7a5cc5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Helm (Forbidden One)", + "GiftDropId": 10030, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10030, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03ce3b52-0d0c-4b72-a027-ade53b7a5cc5,GhulL0k9q0euEooMTUKTHQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Helmet (Invasion 2)", + "GiftDropId": 10031, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10031, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Brown)", + "GiftDropId": 10032, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10032, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,225209dc-3afc-40cf-858e-89f7afa00c0d,efeb07ab-6253-436d-bb66-991ddad72e58,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Gray)", + "GiftDropId": 10033, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10033, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,3f6c8bd2-2c1d-4c8c-a9de-16600fee9645,efeb07ab-6253-436d-bb66-991ddad72e58,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Tan)", + "GiftDropId": 10034, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10034, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,d7f0ffd3-ccf9-465e-8afe-4d7efb78dd2c,efeb07ab-6253-436d-bb66-991ddad72e58,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Blue)", + "GiftDropId": 10035, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10035, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,G7p-E7TJHkSojZtj_5pDXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Red)", + "GiftDropId": 10036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "04e348b7-107f-47b4-9331-ae3b9fa184ca,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Braided Bun Hair ", + "GiftDropId": 10037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ab6e79-1198-49f2-945b-528523e306bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Amulet", + "GiftDropId": 10038, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10038, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ab6e79-1198-49f2-945b-528523e306bc,aUsPNgV2c0u15VhGBAIyvg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Necklace (Ruby)", + "GiftDropId": 10039, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10039, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05b7af56-71f2-45ba-a377-c105bf6a6f7a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Werewolf Wrist", + "GiftDropId": 10040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Gold Sequins)", + "GiftDropId": 10041, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10041, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,Wm30oV5BtEuFQZFk3dPK_w,tfiSfpRez0y_R4QjAhO0bQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Red Sequins)", + "GiftDropId": 10042, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10042, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Red)", + "GiftDropId": 10043, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10043, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,cypMpMaVeUuRjm4FLH4czQ,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Teal)", + "GiftDropId": 10044, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10044, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,LTXy6g4xe0abuFzOLpVDUg,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Dark Red)", + "GiftDropId": 10045, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10045, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,tMsCUhDslkmdNBfogeSz7w,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Black)", + "GiftDropId": 10046, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10046, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,whWKAUSGp0qprsJomq9Nwg,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Pink)", + "GiftDropId": 10047, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10047, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06475461-f3ab-4e92-ad92-243c00b19ff0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prodigy Princess Armor", + "GiftDropId": 10048, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10048, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06adb976-ca7f-4b8b-8b72-2e03c8bc10b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clover Head Bopper", + "GiftDropId": 10049, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10049, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07023692-97e1-4a65-a881-64ca6b4ae08e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbarian Helm ", + "GiftDropId": 10050, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10050, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Beige)", + "GiftDropId": 10052, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10052, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,_T4zEki_wk-UIPdhSaBr_Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Green)", + "GiftDropId": 10053, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10053, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,5z3jZhYvq0CGmdJ9IcUUsg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Brown)", + "GiftDropId": 10054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,EgEoJzG7A0aJ92qfInbX7g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Orange)", + "GiftDropId": 10056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,NETGR8iysUyxcZM_oGmrwQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (White)", + "GiftDropId": 10057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,OlfQDuz1NUOr88AL2n0jXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Red)", + "GiftDropId": 10058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,VudVdOAjZUibHmtFeNkvSw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Blue)", + "GiftDropId": 10059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Black)", + "GiftDropId": 10060, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10060, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,e-oZt-PbKEOfawVammBQTA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Striped)", + "GiftDropId": 10061, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10061, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,jwXdjDbEmkOFyKZHT_RYOw,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Blue)", + "GiftDropId": 10062, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10062, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,LdKaVAveokmp3qRwVBxnFA,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Green)", + "GiftDropId": 10063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0736e71b-a32b-4485-bedf-6fde8fe3b09f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Hair Bow", + "GiftDropId": 10064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0753d7a4-8247-4fca-a6fc-359c26086140,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fonzie Hair", + "GiftDropId": 10065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "076e98b6-dc1b-48f8-bb02-aa65d26b33d1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prodigy Princess Bracelets", + "GiftDropId": 10066, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10066, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07bebdb7-bbe1-49ea-a746-c1d00e11f174,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Earrings", + "GiftDropId": 10067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07bebdb7-bbe1-49ea-a746-c1d00e11f174,ciwVtCaRHEO72BFPe4Ujmg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack-O'-Lantern Earrings", + "GiftDropId": 10068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poodle Skirt", + "GiftDropId": 10069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,tPAJqFHiX0yUQpDOE0MJ6A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Planetary Dress", + "GiftDropId": 10070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Pinstripe)", + "GiftDropId": 10071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,46970903-9799-4d25-b90a-7162c1f5dbef,05cff8b8-d437-485a-b4b8-41d35becd022,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Creators Contest 2)", + "GiftDropId": 10072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,531b4297-b38b-4362-9854-4f2139ea43be,c2a9c007-2748-4fa2-ab9b-0081eef792f1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Herringbone)", + "GiftDropId": 10073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,newGzX_zA0eGUX3Iayq5Ag,QBzMp7MdAUOLIofvddui1A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Purple)", + "GiftDropId": 10075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Armor (First Release)", + "GiftDropId": 10076, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10076, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,a9oUAXZpHUaW1_ncqhkYZg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Armor (Invasion)", + "GiftDropId": 10077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,CeebPv2TZUixq8cmVD5lUA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Armor (Invasion 2)", + "GiftDropId": 10078, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10078, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,eG1Lf1vG60qNQiCBRsAhqA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Armor (Forbidden One)", + "GiftDropId": 10079, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10079, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "09177621-9ecd-4f6a-b6a5-64490139141d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Top Hair", + "GiftDropId": 10080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Mastermind)", + "GiftDropId": 10081, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10081, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,bQyNgFWAe0SPttPri6hxyg,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Rogue)", + "GiftDropId": 10082, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10082, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,wRPoHTsXFESK5pjkxVMqGA,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Outlaw)", + "GiftDropId": 10083, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10083, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,YB7kXMyLJ0mF_5WidhmH8A,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Spy)", + "GiftDropId": 10084, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10084, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Black)", + "GiftDropId": 10085, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10085, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,-HYrY2A5Tk2UWMi4_hmYbg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Orange)", + "GiftDropId": 10086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,IjRMopsYlUqSE6327I9TIQ,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Purple)", + "GiftDropId": 10087, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10087, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,j3I0vVz0yUOYLX9wCOMyyA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Coat (Invasion)", + "GiftDropId": 10088, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10088, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,QBglgj80zkuvUkk55Y5Feg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Green)", + "GiftDropId": 10090, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10090, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,zTsJHduQ5kirH9-6mewV4g,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Yellow)", + "GiftDropId": 10091, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10091, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Blue)", + "GiftDropId": 10092, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10092, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,0ps19D7b_U2iejdKQFORyA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Red)", + "GiftDropId": 10093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,pjkTGVHkIE-BzCVi1KAesQ,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Black)", + "GiftDropId": 10094, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10094, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,QP38EMygY0S-KIvdGatARA,m5Vw_MMCWUiSOOCL94QO0w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (White, 2019 Fantasy Contest)", + "GiftDropId": 10095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,t1MeoroFOUioYmPfT9mCeA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Green)", + "GiftDropId": 10096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0abb6b08-20ce-444f-879e-0d1344df096c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Earrings", + "GiftDropId": 10097, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10097, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White, Red)", + "GiftDropId": 10098, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10098, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,27af51bc-8226-4911-8d47-22d28ea8e378,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White, Blue)", + "GiftDropId": 10099, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10099, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,3df5d13b-ba77-4b51-90b2-7a946e4d0be7,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, Blue)", + "GiftDropId": 10100, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10100, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,6145292a-9002-41c6-8cd5-43679b6f542f,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Grey)", + "GiftDropId": 10101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,7c1aaa7e-503b-46ef-b1c5-0c61a75b916e,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Blue)", + "GiftDropId": 10102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,857fdcd8-704f-43d0-92b9-bca26619b153,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White)", + "GiftDropId": 10103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b5d62931-e756-4a8a-8f3b-760beba49319,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White)", + "GiftDropId": 10104, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10104, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b9f51861-ad10-4878-a9b1-d849bccf532a,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Red)", + "GiftDropId": 10105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Hat (Blue)", + "GiftDropId": 10107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,24zVmiGiaESrM5qcRfF6gA,3pdsIrhM9EW-y-LNnjbFxg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Hat (Orange)", + "GiftDropId": 10108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,C9cPjOoiCUCHrCBi809CMQ,3pdsIrhM9EW-y-LNnjbFxg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Hat (Red)", + "GiftDropId": 10109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,LOeHr4xoik6VOv1fOeImjA,3pdsIrhM9EW-y-LNnjbFxg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Hat (Green)", + "GiftDropId": 10110, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10110, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0d1ae26e-aaa4-4914-ad70-c9ab8cfabc61,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Box Braids with Cuff Hair ", + "GiftDropId": 10111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0d4e7ebe-efd9-4e68-9900-5645916e7596,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Silver Sequins)", + "GiftDropId": 10112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Hat", + "GiftDropId": 10113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,7Rw_gt9IUEOYsvVcOTbVBw,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Hat (Red)", + "GiftDropId": 10114, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10114, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,aiBfwCNwpUyJ0rYKCMa7qw,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Hat (Yellow)", + "GiftDropId": 10115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,B6qNcZQ770eJel13RskuIg,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Begonia)", + "GiftDropId": 10116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,cSFt9MWLj06CDzIzATqrTg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Poppy)", + "GiftDropId": 10117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,LEUQnDz-k0m-hY-AX3Z9Sg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Paradise)", + "GiftDropId": 10118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Mt2a9ygWPkS-DyXj1q-Kvw,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Lily)", + "GiftDropId": 10119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,p3g8YAOhTUKAiE-Wh-X-aA,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Dahlia)", + "GiftDropId": 10120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Pu_1I6Zq-0G1HBMHa5MrKg,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Hat (Green)", + "GiftDropId": 10121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,SqHAYcqBXU2PtF2urWGruQ,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Primrose)", + "GiftDropId": 10122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0yFzgVESokC3gFd3hrS8bg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Gown (Doctor)", + "GiftDropId": 10123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0yFzgVESokC3gFd3hrS8bg,GK3yolCNlEm3B_5DtHkE8w,yKb2A8M_m0GQDhFWCRUHTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Gown (Level 3)", + "GiftDropId": 10124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Mastermind)", + "GiftDropId": 10125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,9SAPupKy_EO6YeG0SMkI5A,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Rogue)", + "GiftDropId": 10126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,DtFYrQwaCky5C1ZycqZbiQ,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Spy)", + "GiftDropId": 10127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,hiMYlmk5sEqh-sElOY3A9g,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Outlaw)", + "GiftDropId": 10128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Black, Red)", + "GiftDropId": 10129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,DzgN67HoikexE2rTlZLdYQ,vm1ESK9ls0SaxSwHplNALQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (White)", + "GiftDropId": 10131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,Em__GeYWaU2pAEqWYCBKpA,DG83ruIdI0Wu-GSRg4icYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Gold)", + "GiftDropId": 10132, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "For earning $10,000", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10132, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,n8t0gIYFbUaPMhyQeWkPSQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Galaxy)", + "GiftDropId": 10133, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10133, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,xeK_acj2hE-sYGhsMRwjhw,HwhHShudGkGjXagJxCN2uA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Patchwork)", + "GiftDropId": 10134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Shirt (Tan)", + "GiftDropId": 10135, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10135, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,84c016ad-133f-45e3-a412-cac35612540b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Shirt (Green)", + "GiftDropId": 10136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "105a5100-cb57-410f-a26b-1ee21002f067,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Coat", + "GiftDropId": 10137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "105a5100-cb57-410f-a26b-1ee21002f067,prEZHWvOM0ysaNfAe06ywA,q0nBwoIx_UWPe93wHDWTYA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Coat (Lilac)", + "GiftDropId": 10138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "11b3413f-2c18-41cb-8ef2-55fb825ed476,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plush Bunny Backpack", + "GiftDropId": 10139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "11b3413f-2c18-41cb-8ef2-55fb825ed476,DNGqrCGe8kKrNmJaGzjjew", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plush Bunny Backpack (Pink)", + "GiftDropId": 10140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "11cec676-0ec3-4778-abe4-a9d399900b54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Belt", + "GiftDropId": 10141, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10141, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "11e508a7-fe7d-470e-b270-2dba33e2f7a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Goggles", + "GiftDropId": 10142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Brown)", + "GiftDropId": 10147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7fb8496f-0e6c-4e48-b8fa-5709ebbf4820,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Tan)", + "GiftDropId": 10148, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10148, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7nRz9Jmnn066_PzngkhfFA,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Red)", + "GiftDropId": 10149, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10149, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,97bbb384-b37e-4ea1-902c-88fbd6854ab5,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Black)", + "GiftDropId": 10150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Black)", + "GiftDropId": 10151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,6fmUy748hU2dgwgaijSkUA,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Green)", + "GiftDropId": 10152, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10152, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,buuNFd8sK0eap78TL1gMNQ,-UFHTNvJs0CGDStb0PFkbQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Blue)", + "GiftDropId": 10153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,dBR1uNgk206eVoWntVzVAg,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Brown)", + "GiftDropId": 10154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,LIgagNf4gk68EYQdlDruxg,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Red)", + "GiftDropId": 10155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,zPGCmxM_b0yTt7tqMaomcw,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Tan)", + "GiftDropId": 10156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Hat", + "GiftDropId": 10157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Doo doo doo doo doo doo", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,ln5aTG458UOVh4sR820FJQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Hat (Tiger)", + "GiftDropId": 10158, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10158, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White)", + "GiftDropId": 10159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Black)", + "GiftDropId": 10160, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10160, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,484b6c13-af22-4ad5-8c43-34c0de095d49,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Light Blue)", + "GiftDropId": 10161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Orange)", + "GiftDropId": 10162, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10162, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Buckaneer)", + "GiftDropId": 10163, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10163, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Yellow)", + "GiftDropId": 10164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White))", + "GiftDropId": 10165, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10165, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Red)", + "GiftDropId": 10166, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10166, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,cfiCxhJZ20u07X1x93tNZQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Hat (QuinnXCII)", + "GiftDropId": 10167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Blue)", + "GiftDropId": 10168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,M8IYDK6aTUyn5mRhr51GtA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Orange, Black)", + "GiftDropId": 10169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,mdSSJyipq0KvjDNQ2NyUaw,LQheTa-EvUaAonSyoWNmXg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Holographic)", + "GiftDropId": 10170, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10170, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nzFUAOCAFUCd9S-x4EKRwQ,Qx7nrZH-K06CgIoJYfFCCQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Heart)", + "GiftDropId": 10171, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10171, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nZor-clxlkm8EO9Gco0Otg,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Red, Blue)", + "GiftDropId": 10172, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10172, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Goblins)", + "GiftDropId": 10173, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10173, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,VB_2uEBs70-9MnLn3__upw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skater Hat (Checkerboard)", + "GiftDropId": 10174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,Vk1n941ZgkKrhrL9mh18oA,lxmw7EbzsUuoy0roRy5McQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Minitron)", + "GiftDropId": 10175, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10175, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,XLYLo5qgW0eociGDgQ16PA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Yellow, Blue)", + "GiftDropId": 10176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,xPs8BvGgdUC1i_luWAfSFA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NBA 75th Anniversary Cap", + "GiftDropId": 10177, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10177, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,yxWEn-oaYE2YvvnrTVV5WQ,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Turquoise, Grey)", + "GiftDropId": 10178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "155c13b9-3c72-4314-85ac-6fbac19cdc76,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rogue Shirt", + "GiftDropId": 10179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Green)", + "GiftDropId": 10180, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10180, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Blue)", + "GiftDropId": 10181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,5_UnQ7vZ9E2T-EhJ7M-mQw,jL-LAsd03EeN1J-Zp8opew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Green Lightning)", + "GiftDropId": 10182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,916384ca-e209-42a0-bd64-c64f5a40b56f,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Red)", + "GiftDropId": 10183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,RA7cizxxYE6J8yV_0XwPxA,VSLcLM0TJU2kJU5gS4KZGw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Pouncing Tiger)", + "GiftDropId": 10184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skateboard on Back (Skull Pink)", + "GiftDropId": 10185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,7WzGZTf51EWClLTLNhhGVg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skateboard on Back (Checkerboard)", + "GiftDropId": 10186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,RDkLPQ8OukGIuLgTwnyqfw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skateboard on Back (Vaporwave) ", + "GiftDropId": 10187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1631eb78-6718-478c-9b62-abbb0537e09c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Hat", + "GiftDropId": 10189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1631eb78-6718-478c-9b62-abbb0537e09c,9Yj55hS4gEOB34bggoRnzw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Hat (Mardi Gras)", + "GiftDropId": 10190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1633766e-fa77-48f3-8c6c-a233e56bf320,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Cape", + "GiftDropId": 10191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mermaid Crown", + "GiftDropId": 10192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16707919-756d-45ae-95fc-cfb6715b8ae6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Helm", + "GiftDropId": 10193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16f4dc71-d35a-4269-b925-1a0cd85a43dd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Werewolf Shirt", + "GiftDropId": 10194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Yellow)", + "GiftDropId": 10195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,3frH6KxZ9kGUYkjeCDpylQ,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Green)", + "GiftDropId": 10196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,6t2rCb6WWEW6pJbcjsAFCw,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Fuchsia)", + "GiftDropId": 10197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,i1XbjBqTu0CILIuJClWimA,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Pink)", + "GiftDropId": 10198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,Lf4FjROSAEqXedFxpXFQfg,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Red)", + "GiftDropId": 10199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,zu0Jk24WTkan6XWSwGU1Uw,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Blue)", + "GiftDropId": 10200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1736a60b-6fb6-49bd-948a-fd3f3fc1be50,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Neutron)", + "GiftDropId": 10201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Beret (Black)", + "GiftDropId": 10202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,14b43bf9-5ba0-484e-ae5d-55cfeb09a70d,3485a30d-27f8-450b-b5aa-1ff3cd227d19,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Beret (Blue)", + "GiftDropId": 10203, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10203, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,5c8f36c5-07da-49f4-af02-d23207a43216,3485a30d-27f8-450b-b5aa-1ff3cd227d19,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Beret (Red)", + "GiftDropId": 10204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17e64798-f6ca-47b9-84ed-0c83b8678056,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Karate Gi", + "GiftDropId": 10205, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10205, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17f275d7-c5b1-4a0c-857f-8fb7a5d7c57a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Helmet", + "GiftDropId": 10206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "184368a6-17fa-4cfd-bb57-a2862f6e17bd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yeti Wrists", + "GiftDropId": 10207, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10207, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "187569d3-23b4-4118-862a-ace7f50fec45,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rammy Floatie", + "GiftDropId": 10208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Red)", + "GiftDropId": 10209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,a5925738-a451-4f25-b622-ccbfa12bd88c,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Black)", + "GiftDropId": 10210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,c64ac7a9-7fd4-4587-8626-0413a190b706,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Green)", + "GiftDropId": 10211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Silver)", + "GiftDropId": 10212, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10212, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,565c17e0-496d-45bd-a2c3-564e118c06cc,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Black)", + "GiftDropId": 10213, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10213, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Gold)", + "GiftDropId": 10214, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10214, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "193a3bf9-abc0-4d78-8d63-92046908b1c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Emo Hair", + "GiftDropId": 10215, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10215, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Untucked Tee", + "GiftDropId": 10216, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10216, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,_aQEMQzp20eMT_Izfc64wA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Cassette Tee", + "GiftDropId": 10217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,42YaouiGVEe3zSjTsvyfoA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Tee (Clinton Kane)*", + "GiftDropId": 10218, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10218, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,Eh1jgOjxpE-AEModcPAFMg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazz Fluence T-Shirt", + "GiftDropId": 10219, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10219, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,fzQzxcpDNEW8Rx122zmjAw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Tee (Charlie Curtis-Beard)*", + "GiftDropId": 10220, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10220, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,g_f9bH8tykGq3yRwWuQPOA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KREQ Shirt", + "GiftDropId": 10221, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10221, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,GU267AQ5T0m1jco3mNw_uw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Maker Pen Shirt", + "GiftDropId": 10222, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10222, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,hbF6ChMyEk-L8O4f6o_l6A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sports Fan Shirt", + "GiftDropId": 10223, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10223, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,JpaGA1tG6U-VLsHH_vklzA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fourth Friday Tee", + "GiftDropId": 10225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,mzu-a8fcsUCW591ENABAgg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Tee (Haven)*", + "GiftDropId": 10226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,QQVh8FdTakO26iOFdzGoBQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Tee (Akintoye)*", + "GiftDropId": 10228, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10228, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,rQaQALql2E-zdM8072gfCg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prom T-Shirt", + "GiftDropId": 10229, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Rocked out at Rec Room's Prom!", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10229, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,S_dLd3dzvk2hM6ZA2DKTWg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Ball Shirt", + "GiftDropId": 10230, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10230, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,SV2UmeQDjEaMK_A2Q4tt3w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Royale Shirt", + "GiftDropId": 10231, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10231, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,vjO5ctMe0UC8GN6p61IC4A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "MrBeast T-Shirt", + "GiftDropId": 10232, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Mr Beast's shirt", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10232, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,V-vCW0ICl0Ke3QPAGo9GSg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bee Yourself Shirt", + "GiftDropId": 10233, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10233, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Black)", + "GiftDropId": 10235, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10235, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,64545dcc-a8eb-4c69-a539-78ee73a2d327,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Green)", + "GiftDropId": 10236, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10236, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Purple)", + "GiftDropId": 10237, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10237, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,909ed249-ce09-4304-8b02-56794fa7567d,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Red)", + "GiftDropId": 10238, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10238, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,aBQ3R9boek-mYeSYSNvDbQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Blue)", + "GiftDropId": 10239, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10239, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,e02838f8-4029-455a-b35c-dd40f972b05b,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (White)", + "GiftDropId": 10240, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10240, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,Tbrc2MlSlE6mKua8qSoluQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Leather)", + "GiftDropId": 10241, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10241, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor", + "GiftDropId": 10242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,_C4RxcDBQE-mHh2oyL9vGw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor (Pink)", + "GiftDropId": 10243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,bhYZTPD1nEaEercLIZRucw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor (Black)", + "GiftDropId": 10244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,zw-evwOmg0q14P040EYYiA,a3I7EyRNVUilLfE6hriYtw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor (Green)", + "GiftDropId": 10245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "19984948-b6b9-4d3b-8562-d0624930df6e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alloy Armor (Red)", + "GiftDropId": 10246, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10246, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "19984948-b6b9-4d3b-8562-d0624930df6e,Owi_JROR80-apNHw-4KNcg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alloy Armor (Black)", + "GiftDropId": 10247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Red)", + "GiftDropId": 10249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,5a614f97-ef7f-4b70-afff-9ed837a86407,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Green)", + "GiftDropId": 10250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,8053b5e5-0f67-4329-a45d-1ee9fc830820,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Yellow)", + "GiftDropId": 10251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,b444ed0a-eab5-4bd6-af34-d080de74a149,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Orange)", + "GiftDropId": 10252, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10252, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a0319e4-24e7-40b3-9976-70bff2c7ff23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Neck Tie", + "GiftDropId": 10253, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10253, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a71064b-794f-40fa-9109-8ad36602b6e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shagg Hair", + "GiftDropId": 10254, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10254, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a742ff9-c4f7-45d8-8e24-8f24aa021db2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Demon Horns", + "GiftDropId": 10255, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10255, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Jacket", + "GiftDropId": 10256, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10256, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,0x7a3hV5XUyzyf8cUuzVtQ,vYAcZMymO0m6bCNQIsI8rQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Jacket (Tan)", + "GiftDropId": 10257, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10257, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1bd891b1-6ec0-4227-9ed8-73c59af4f819,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cleric Armor", + "GiftDropId": 10258, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10258, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Blue)", + "GiftDropId": 10259, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10259, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,AC3zfm38JEyBZWuXDh4Ukg,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Purple)", + "GiftDropId": 10260, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10260, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,dyEaPloE8kazWC7Zblv8uQ,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Red)", + "GiftDropId": 10261, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10261, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,RfZNDPUok0WyQEa3Ko08ow,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Pink)", + "GiftDropId": 10262, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10262, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,sX0ZZDcCUkyFSJISfvq0vg,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Green)", + "GiftDropId": 10263, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10263, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,TnEDe1QoMUCUdqPL_7CxTA,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Lavender)", + "GiftDropId": 10264, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10264, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1c89e162-fbce-45e2-a158-6bf0c4f5e52b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Festive Antlers", + "GiftDropId": 10265, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10265, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1c89e162-fbce-45e2-a158-6bf0c4f5e52b,1LtCxaCDjUmg62fYCjNUSQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Festive Antlers (Red)", + "GiftDropId": 10266, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10266, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1d27b674-f9e2-4ffc-9d8c-a58a1be06457,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Afro Hair", + "GiftDropId": 10267, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10267, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Orange)", + "GiftDropId": 10269, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10269, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Pink)", + "GiftDropId": 10271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,c9589974-c261-485e-b571-cb2f34fb178f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Green)", + "GiftDropId": 10272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (White)", + "GiftDropId": 10273, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10273, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,1919d319-6cce-4500-8766-15fed6a13fa8,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Gold)", + "GiftDropId": 10274, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10274, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,lBe3yxuE40eBmTrnEHBqQQ,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Purple)", + "GiftDropId": 10275, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10275, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,oZ8k0Qv3SkG-DkY0_dP7UA,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Teal)", + "GiftDropId": 10276, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10276, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fab9cd8-257e-4825-8b7d-bd8bd281d362,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Shovel (Invasion)*", + "GiftDropId": 10277, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10277, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fab9cd8-257e-4825-8b7d-bd8bd281d362,q9hshPgwT0ijshnbKEBKWw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Shovel (Invasion 2)", + "GiftDropId": 10278, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10278, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fcaf4fd-9012-407e-b691-fbc3ccf22421,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Overalls", + "GiftDropId": 10279, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10279, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fcaf4fd-9012-407e-b691-fbc3ccf22421,S0AKRB_m2k-I7snHnUigtw,uTkbswCedUGyuZcaX0W6Ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Overalls (Creators Contest)", + "GiftDropId": 10280, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10280, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fd69ef8-0b74-4962-af5a-67f0bf0358f2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ponytail Hair", + "GiftDropId": 10281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fed823a-22bb-4225-bdc4-491da6eba875,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Gloves", + "GiftDropId": 10282, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10282, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Red)", + "GiftDropId": 10283, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10283, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,b7oobDcDtE-69fhM-5g5AQ,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Yellow)", + "GiftDropId": 10284, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10284, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,Blev_VFjRUysY_nymGWAVg,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Green)", + "GiftDropId": 10285, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10285, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,HdwZhjrqxE6wuf68MnDhDw,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Blue)", + "GiftDropId": 10286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Hood", + "GiftDropId": 10287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,afnIqin4lkKKqWrvBvVagA,bCuW1YadE06p6v1dBHsx4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Hood (Movie Magic Contest)", + "GiftDropId": 10288, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10288, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Ferret) ", + "GiftDropId": 10289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,0wRS4Rs4ykqjJE_5Fk-Flg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Friendship Sweater (Oliver Otter)", + "GiftDropId": 10290, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10290, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,6dzz5ZcGtE6bEjQHxWmo0A,2cSC290cPkCOrW5vtlVUxw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Penguin)", + "GiftDropId": 10291, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10291, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,azbt5pgvrUS4LQwhndFeJg,cHZ4lDnSoUypIXCiRRowzg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Axolotl)", + "GiftDropId": 10292, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10292, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,oIVUmOrjjUysnN4XoWvJSA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Friendship Sweater (Olivia Otter)", + "GiftDropId": 10293, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10293, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,qzvnj7D1tUuf01HvpiIvqw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweater (Cow Face)", + "GiftDropId": 10294, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10294, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,yXVeN9SzQUKE_6u_2KPzgw,sWgRczvpUU6ZHeoMrMD_yw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Toucan)", + "GiftDropId": 10295, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10295, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "21599b51-c50f-43d8-ac5f-62c30cd02ca5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lori Hair", + "GiftDropId": 10296, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10296, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "21caa68e-c3fa-474c-af5e-af1e742b7a60,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Skirt (Blue)", + "GiftDropId": 10297, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10297, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "21caa68e-c3fa-474c-af5e-af1e742b7a60,758752bd-db2f-43d2-b580-55b3e1efffd5,b75ef67d-00c3-4ac1-9b72-212032460294,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Skirt (Red)", + "GiftDropId": 10298, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10298, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "21caa68e-c3fa-474c-af5e-af1e742b7a60,c5deba2a-6e35-4b13-8e94-8ba5457f39df,b75ef67d-00c3-4ac1-9b72-212032460294,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Skirt (Yellow)", + "GiftDropId": 10299, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10299, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zipper Dress (Yellow)", + "GiftDropId": 10300, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10300, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,6d703981-2734-4c45-8983-cdd5f328902f,cfabdefe-0890-436e-b2a3-b5c712e22955,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zipper Dress (Green)", + "GiftDropId": 10301, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10301, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,830be2fa-60a5-48cc-931f-34b670eae4bd,cfabdefe-0890-436e-b2a3-b5c712e22955,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zipper Dress (Purple)", + "GiftDropId": 10302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,bbfa08e3-8e6b-4e0f-b264-1b398d7cd44a,cfabdefe-0890-436e-b2a3-b5c712e22955,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zipper Dress (White)", + "GiftDropId": 10303, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10303, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Turquoise)", + "GiftDropId": 10304, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10304, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,0p_eXn2gXUKrshSEmrQx6Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Red)", + "GiftDropId": 10305, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10305, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,3cPbhpDX-EqDQy6eN1E5Ug", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Blue)", + "GiftDropId": 10306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10306, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,fAmEEm6ziUO2ZXTscQWtSg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (White)", + "GiftDropId": 10307, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10307, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,gEuE-X67b0-q5C0Tv11_nA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Green)", + "GiftDropId": 10308, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10308, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,gk_mQ-jsakmxhZYYNlRl_w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Orange)", + "GiftDropId": 10309, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10309, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Blue)", + "GiftDropId": 10311, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10311, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,357eb160-360b-4a63-840d-65d11cc8ffc2,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Green)", + "GiftDropId": 10312, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10312, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Black)", + "GiftDropId": 10313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,a38254c0-00e3-429b-9d5d-b9e6a9812e69,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Red)", + "GiftDropId": 10314, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10314, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3a9b576-5433-4305-bd96-b08820c09212,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (White)", + "GiftDropId": 10315, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10315, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3KmqVuMQkCYK6sVTMOTOA,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Purple)", + "GiftDropId": 10316, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10316, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,RKmRHk2N_U2gd91nybo6vg,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Yellow)", + "GiftDropId": 10317, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10317, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22pyI3Kz-UullhcebC6DLQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snorkel", + "GiftDropId": 10318, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10318, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23767c66-31de-4e6f-81f5-b17769a0fd5b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Neighborly Cardigan ", + "GiftDropId": 10319, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10319, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23944856-b567-4075-815f-261cb4655cff,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Jacket", + "GiftDropId": 10320, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10320, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Leathered Iron)", + "GiftDropId": 10321, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10321, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,GfC01_o8QkGTbnGNjv_DSw,7mLb5jMJMUug7Nzwxv6D4A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Wolf Steel)", + "GiftDropId": 10322, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10322, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,rFCKF2ku1UWj-TF-VClPRg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Cricket)", + "GiftDropId": 10323, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10323, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,zld80uf3y0uu__Yejms-3Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Galaxy)", + "GiftDropId": 10324, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10324, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "241506f6-bf88-4b46-b5fe-513a225421f4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Half Up Hair", + "GiftDropId": 10325, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10325, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24781418-38ad-411f-925e-2321fe616b51,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Cloud Hat", + "GiftDropId": 10326, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10326, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24a240f4-1574-420b-b898-a7e91f170759,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Bun Hair", + "GiftDropId": 10327, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10327, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Green)", + "GiftDropId": 10328, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10328, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,09Cg6dOq2kC2-tI5yyGSYg,YFZimVHKuk--lXS8RCrZTA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Snowman)", + "GiftDropId": 10329, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10329, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,3UxfTkPsEkezOXO__wz_mg,nalaCGqtL0SFA4Itwqmp8g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Vermont)", + "GiftDropId": 10330, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10330, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,6vjA_vHq70Gclypll_GS_A,nalaCGqtL0SFA4Itwqmp8g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Red)", + "GiftDropId": 10331, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10331, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,mraJrTA4V0eARb_Kq7yYVw,NH0L99bd00OVKMyltuSnHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Pine)", + "GiftDropId": 10332, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10332, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,u1JNHHTxSU-N53Bs9pRCoQ,0zHD3DaMAUOogqOqyd59SQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Ugly Ham)", + "GiftDropId": 10333, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10333, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,w7ybaJQVo0WCZFDPCJAtWw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Reindeer)", + "GiftDropId": 10334, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10334, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,xVwzV9-m6E-8PVpkg4D-AQ,NH0L99bd00OVKMyltuSnHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Frost)", + "GiftDropId": 10335, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10335, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Zonked)", + "GiftDropId": 10340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,2vawoQvJPUegnClmr2RNAQ,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Zzz)", + "GiftDropId": 10341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,kIcd-yEnsEqxoeogquvmRw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Dozy)", + "GiftDropId": 10342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,qHyKfCsrbUqSWomjLXf7Hw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Sandman)", + "GiftDropId": 10343, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10343, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,ZvUwd0aVfk6SjA7oyouXUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Starry Night Cap", + "GiftDropId": 10344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2565d597-9d17-4c47-a66f-b683583f0cf8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Bunny)", + "GiftDropId": 10345, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10345, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25769d1f-4ecb-4d92-b692-322b38c013b5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Strength) ", + "GiftDropId": 10346, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10346, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Brown)", + "GiftDropId": 10347, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10347, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,002b07bb-4256-44ce-8ca4-25510e70b6b5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Yellow)", + "GiftDropId": 10348, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10348, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Green)", + "GiftDropId": 10349, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10349, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,90869e86-cbc5-4024-9d08-fcdc41c64eb5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Grey)", + "GiftDropId": 10350, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10350, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,bzYdPb8GWUS-CgT4wrziIA,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Shirt (Orange)", + "GiftDropId": 10351, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10351, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,e821aa74-2d47-4388-bcfb-1893b8a83a52,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Black)", + "GiftDropId": 10352, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10352, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Cherry)", + "GiftDropId": 10353, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10353, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25e76b00-4c56-4259-968f-046c14fb36fd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Earrings (Musical Note)", + "GiftDropId": 10354, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10354, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "26f5e849-14b3-4cb3-ab92-673c94b37c51,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Demon Wings", + "GiftDropId": 10356, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10356, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "26f5e849-14b3-4cb3-ab92-673c94b37c51,CwObTyhghkWonhm5nTnAaw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flying Machine Wings", + "GiftDropId": 10357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "274cb9b2-2f59-47ea-9a8d-a5b656d148c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Saija Helmet", + "GiftDropId": 10358, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10358, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2786fc22-3d6c-440d-afcc-15890c061577,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bee Antenna", + "GiftDropId": 10359, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10359, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2786fc22-3d6c-440d-afcc-15890c061577,dXz9B9OH2UuLNV35u8KB-A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ladybug Headband", + "GiftDropId": 10360, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10360, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27c2eb7f-9fac-4c42-90c7-44e7a33d5303,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (The Blue One)", + "GiftDropId": 10361, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10361, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27cdecd2-88f1-40a8-80a9-87abd827c3c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Beard", + "GiftDropId": 10362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27e742bf-3081-4274-ba70-301f0edeb4f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Coat", + "GiftDropId": 10363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Towel Cape", + "GiftDropId": 10364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,GAzH2pThjECghCmCwKJPrQ,4T-xj-xtSEiv1PDYv30URg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "The Defenders Cape", + "GiftDropId": 10365, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10365, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,Hae8Pfe8mEWeF8mL9hC9dw,Vat8nL4ZBEK9mLABJiXS6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "The Amazings Cape", + "GiftDropId": 10366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,kE9vr2bKoUSFm7AkcXSmew,5o-249dUdUOhW28lrJY82A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Valor Society Cape", + "GiftDropId": 10367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,pEWioft3gkOMWS4tZFping,gOw6NOX-QUegt4mxjtfpfA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Masterminds Cape", + "GiftDropId": 10368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,SN8HDRADZ0GvrFgEHKMhWQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Towel Cape (Rainbow)", + "GiftDropId": 10369, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10369, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2822aa50-4344-434d-b46f-fd9443f865b9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Curly Bob Hair ", + "GiftDropId": 10370, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10370, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Black)", + "GiftDropId": 10371, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10371, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,a6796264-9c7e-4605-830c-06db8d0dc780,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Blue)", + "GiftDropId": 10372, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10372, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,baffdefe-de21-4551-9330-b50873965bdd,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Red)", + "GiftDropId": 10373, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10373, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,f3b2330a-b981-4c7e-902f-1f57382f2388,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Pink)", + "GiftDropId": 10374, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10374, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Vest (Blue)", + "GiftDropId": 10375, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10375, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,AcLApWMhAU6tK10O7KoOog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Vest (Green)", + "GiftDropId": 10376, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10376, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,dhJm0moskU6urIwG1TXs_A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Vest (Purple)", + "GiftDropId": 10377, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10377, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,J8z15LYBak6jHu3ZaaKAXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Vest (Red)", + "GiftDropId": 10378, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10378, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,QSXXWZrS6UaoAUn3u7hXFw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Frantic Rabbit Shirt", + "GiftDropId": 10379, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10379, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask (White Glow)", + "GiftDropId": 10380, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10380, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,7BrllPDzNEyD9UZgdgM1Dw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Green)", + "GiftDropId": 10381, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10381, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,DJnKyNXtuEW1tbKBFscIng,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask (Pink Glow)", + "GiftDropId": 10382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,FO32QjZ17E66PiSEDyf0xA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Pink)", + "GiftDropId": 10383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,Ftonil9tzEWQnmRQuTxwxQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Orange)", + "GiftDropId": 10384, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10384, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,jhPUIkf5bkinMSsqPTK3fg,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask (Yellow Glow)", + "GiftDropId": 10385, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10385, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,kHPSqeM7JUqzMDtVxBGyBg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Blue)", + "GiftDropId": 10386, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10386, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,rv8cpfd8kUCK5NbwjNmExg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Purple)", + "GiftDropId": 10387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,s6DQxJ3gY0CG8L7JmcmRTQ,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask", + "GiftDropId": 10388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,ZY0rVNemjEuEMGMjuPNZyA,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask (Blue Glow)", + "GiftDropId": 10389, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10389, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28f00eee-d3d1-4cac-ac70-fca064fcbaf0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "He-Man Armor", + "GiftDropId": 10390, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10390, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Blue)", + "GiftDropId": 10391, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10391, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Green)", + "GiftDropId": 10392, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10392, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Red)", + "GiftDropId": 10393, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10393, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2a61c844-81c6-4f82-9c75-66cf308ed4e1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowgirl Hat", + "GiftDropId": 10394, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10394, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2af73868-b619-43f7-9b7a-37a8fe2502bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Edgy Earrings (Spiked)", + "GiftDropId": 10395, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10395, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Pink)", + "GiftDropId": 10396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,827a1538-51bb-4fef-99c1-7f1bebd9866c,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Red)", + "GiftDropId": 10397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,c5884778-a87f-4612-9717-86fbb65d440f,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Blue)", + "GiftDropId": 10398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,rZOgFhv59UKssAH7k-UDyQ,eVl7mLA1VkmnR81YLF-ZNg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Crown", + "GiftDropId": 10399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b325613-84c1-46d8-86b4-a167d79661da,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sports Scarf (Buckateers)", + "GiftDropId": 10400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b325613-84c1-46d8-86b4-a167d79661da,ggpNxFtZMEaHlvWXsDl9Tw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sports Scarf (Goblins)", + "GiftDropId": 10401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b325613-84c1-46d8-86b4-a167d79661da,Jd_ahlwRskehLggn1T-GdA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sports Scarf (Shamrock)", + "GiftDropId": 10402, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10402, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b7a32da-eda1-45e1-b28a-f9f882cda7fa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Toy Jetpack", + "GiftDropId": 10403, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10403, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b7f4dae-51da-4af0-b009-12d6005c85c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mullet Hair", + "GiftDropId": 10404, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10404, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Yellow)", + "GiftDropId": 10405, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10405, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,kX7ocqn8X0-4M1nw-KrwFQ,qC66Hu6yKEu2Res2o2z1Kw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Getaway Contest)", + "GiftDropId": 10406, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10406, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,v3af60p1Q02NpdCqIRO9lw,1hVOI7IuY0mKvtr2PZXLww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Red)", + "GiftDropId": 10407, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10407, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c3773a5-a0b4-41c5-a4df-6572dff516c9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "2020 Glasses", + "GiftDropId": 10408, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10408, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c679f89-c76e-4cfb-94e9-448c8fd44d55,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Saija Shirt", + "GiftDropId": 10409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Calico)", + "GiftDropId": 10410, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10410, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,V1M2-FXZSEG782d6D0AhUg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Burmese)", + "GiftDropId": 10411, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10411, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,NaXiRmxgkkGK1U7IQ4yn8w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grinning Cat Hat", + "GiftDropId": 10412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,T-JZqXUd3kC1P8L5Pu4ZmA,ao-eeUnb8ECcW2IFGuk76w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiger Hat", + "GiftDropId": 10413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,VeZQlPI72E6e57IQqAOq6w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grinning Cat Hat (Pink)", + "GiftDropId": 10414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,wNde5lsob06eQxEH2t-zUw,5KeLrnvaKEWnEiap1xzmjw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Tabby)", + "GiftDropId": 10415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Spirit)", + "GiftDropId": 10416, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10416, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,FNe9LkWJMUeC3frYJMyEaQ,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Harmony)", + "GiftDropId": 10417, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10417, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,mudt-Z5-5USdnIq-xaDgOw,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Joy)", + "GiftDropId": 10418, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10418, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2cb4f372-3372-4583-8b57-c4e3988e3c28,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punky Hair", + "GiftDropId": 10419, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10419, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Atlanta Hawks T-Shirt", + "GiftDropId": 10420, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10420, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,2MUexARJAU-Vc-Qebqqepg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "LA Clippers T-Shirt", + "GiftDropId": 10421, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10421, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,49mpP0duKEylQ2v5ZU9SYg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Portland Trail Blazers T-Shirt", + "GiftDropId": 10422, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10422, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,4UTuNYISo0OP70FuGzmOsg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brooklyn Nets T-Shirt", + "GiftDropId": 10423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,9bQaIrqI00qtjdtkIkj_3g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Los Angeles Lakers T-Shirt", + "GiftDropId": 10424, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10424, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,a4r3MYNjT0Ok0uQX9BYH6w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "New York Knicks T-Shirt", + "GiftDropId": 10425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,B3wjSG3Ui0ipGgN3h7BFiw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orlando Magic T-Shirt", + "GiftDropId": 10426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,clStIXndXk2ayewq-1LKng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Miami Heat T-Shirt", + "GiftDropId": 10427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,dpxEW-2Un0eeVIsg5_o6Xw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boston Celtics T-Shirt", + "GiftDropId": 10428, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10428, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,eAq9xK51mE-Nu4RQY0ds4Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detroit Pistons T-Shirt", + "GiftDropId": 10429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,eCEF5P5N7EC_cEjM9-5iUA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golden State Warriors T-Shirt", + "GiftDropId": 10430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,H_lV3FQG0EC4ebW5vfnRIA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Philadelphia 76ers T-Shirt", + "GiftDropId": 10431, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10431, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,hE5scNMqJ0igY_jhufvNmg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicago Bulls T-Shirt", + "GiftDropId": 10432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,hoXpo41nnEOPGq20Tq-t9A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sacramento Kings T-Shirt", + "GiftDropId": 10433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,hU2rt41rvUqulLM1H5NX4g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Phoenix Suns T-Shirt", + "GiftDropId": 10434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,ibmxOUIFs06gOpRYLe58xg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cleveland Cavaliers T-Shirt", + "GiftDropId": 10435, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10435, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,j3S5Gk92mEOKlD424seciA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Minnesota Timberwolves T-Shirt", + "GiftDropId": 10436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,JBFu1kZ8C0ya5JZLDh0ynw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "New Orleans Pelicans T-Shirt", + "GiftDropId": 10437, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10437, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,kk271nI1MUu-gZjec9djrQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Toronto Raptors T-Shirt", + "GiftDropId": 10438, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10438, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,LpUOG6fHz0uQPtmOLtUlKw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dallas Mavericks T-Shirt", + "GiftDropId": 10439, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10439, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,M3vXSuDRw0GLNh9A4dF4vA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Washington Wizards T-Shirt", + "GiftDropId": 10440, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10440, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,nEBw9Nh1-kWcOynsm7P8Pw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NBA 75th Anniversary T-Shirt", + "GiftDropId": 10441, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10441, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,oflbr1qvHUyvwUxdFZMcmA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Milwaukee Bucks T-Shirt", + "GiftDropId": 10442, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10442, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,OpWc8pumTk6M6x1WSw3a6Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Houston Rockets T-Shirt", + "GiftDropId": 10443, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10443, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,ow_9g2xNj0G33-zWIhjW-Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Indiana Pacers T-Shirt", + "GiftDropId": 10444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,pvnZdyL9NEaYYX8T12AgVA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Memphis Grizzlies T-Shirt", + "GiftDropId": 10445, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10445, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,RddbstjtZ0ClxgY-s66tTw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "San Antonio Spurs T-Shirt", + "GiftDropId": 10446, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10446, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,sVeZH49mP0yBRKrbVr-0LA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Denver Nuggets T-Shirt", + "GiftDropId": 10447, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10447, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,tkHJl8TQHEiSeD-seDV4jg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Utah Jazz T-Shirt", + "GiftDropId": 10448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,yVNoqFjSeU6mPJxEJnzRLg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Charlotte Hornets T-Shirt", + "GiftDropId": 10449, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10449, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,ZDsylFpkEUi5PijTLSfYNg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oklahoma City Thunder T-Shirt", + "GiftDropId": 10450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2cf6ceee-4c45-4fb4-b9df-cb8437742e85,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doubloon Necklace", + "GiftDropId": 10451, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10451, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2d07c0d0-b277-46dd-8980-382bdaa4749e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angel Halo", + "GiftDropId": 10452, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10452, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2d07c0d0-b277-46dd-8980-382bdaa4749e,f6O5cw0vc0ineEptRysocg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Halo (Invasion)*", + "GiftDropId": 10453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ddd2c2b-596c-4022-a488-655b0db1c265,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Glove", + "GiftDropId": 10454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Blue)", + "GiftDropId": 10455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,HWc25-d8dUmNN2F3n8mV5A,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Red)", + "GiftDropId": 10456, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,MS7EPNLJEEyMLC6_yHQYtA,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Purple)", + "GiftDropId": 10457, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,UUyjVU4mvECPhI9xTMYR1Q,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Green)", + "GiftDropId": 10458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,Y0e7o0_BKUm7XJSLediN5w,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Black)", + "GiftDropId": 10459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e31fd6c-dffa-4571-8e53-fc28fd0c98e0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Apron", + "GiftDropId": 10460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Plaid, Blue)", + "GiftDropId": 10461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,071d1bf3-86dc-4a31-b54a-e6579fab8649,d015cae7-a905-49e4-8823-6dec069689a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Purple)", + "GiftDropId": 10462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,0iSsaY-HgkmLaRHCn5vEdw,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Blue)", + "GiftDropId": 10463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,55901f12-d5b5-4fa8-b4c8-e479689ee39d,f600037d-c9c0-43fa-b45b-02f456f9dd5f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Denim)", + "GiftDropId": 10466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,bf82f2f6-9af8-431e-a296-0890dea48ba7,d015cae7-a905-49e4-8823-6dec069689a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Argyle)", + "GiftDropId": 10467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,EfdMcnfHt0mr0PQ_maaYOg,DRJcNhkqvkKFEaZpOguR6w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Flowers, Green)", + "GiftDropId": 10468, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10468, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,FAviMCQ_EE2Mpt6QPo5OEw,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Red)", + "GiftDropId": 10469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,jGj28vhq8EGwP2RuM074aQ,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Yellow)", + "GiftDropId": 10470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,kmj5zOjcwku_WWKroCeiVQ,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Pink)", + "GiftDropId": 10471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,MFrcSQ1DYUm8imvy4ypgvw,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (White)", + "GiftDropId": 10472, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10472, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,n4SdiVms4kaqdjXdbjRBbw,YEMLBlOWsEO4tELHseZ7LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Referee Shirt (Gold)", + "GiftDropId": 10473, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10473, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,ojvIFCTpJkeegestF065wA,10fYSIBytk-yUjveDa407w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Plaid)", + "GiftDropId": 10474, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10474, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Red)", + "GiftDropId": 10475, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10475, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,22dc463a-a89b-46ad-9a0d-557c742b4a80,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (White)", + "GiftDropId": 10476, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10476, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,59866578-d4e0-417b-9483-233ab108b1ac,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Cherry)", + "GiftDropId": 10477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Black)", + "GiftDropId": 10478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ed134bee-d199-43eb-98bd-206571603f40,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Blue)", + "GiftDropId": 10479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ITH2OpzjP022vZ5JgxV_iQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Yellow)", + "GiftDropId": 10480, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10480, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,PMa9370LPEig_7pKwCceEQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Green)", + "GiftDropId": 10481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e7cbdb0-cf22-4938-964f-acca57d221b7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE Earmold - Red)", + "GiftDropId": 10482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e7cbdb0-cf22-4938-964f-acca57d221b7,aEsXeTI_SEOclbm82n17tg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE Earmold - Gray)", + "GiftDropId": 10483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e7cbdb0-cf22-4938-964f-acca57d221b7,pZDvYABTN06KdJ5Ck60XLA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE Earmold - Blue)", + "GiftDropId": 10484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f77696c-618c-4fb8-9220-33839cd3bfcd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Top Hat", + "GiftDropId": 10485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Blue)", + "GiftDropId": 10486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (Green)", + "GiftDropId": 10487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (Red)", + "GiftDropId": 10488, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10488, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,de0a5a3a-8aff-4799-8269-9efa3aeb383a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Red)", + "GiftDropId": 10489, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10489, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,e5de2e45-207c-46af-9a5e-eb01a0c621fe,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Green)", + "GiftDropId": 10490, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10490, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,hPVbRnQq-EW3g0q17N6G5w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski's on Back (Orange)", + "GiftDropId": 10492, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10492, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,HQ1M8kINaEu-0HJtz7f8Gg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Ski's on Back", + "GiftDropId": 10493, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10493, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,OScwXIzJHUKzb-NC6gUnxw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski's on Back (Black)", + "GiftDropId": 10494, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10494, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,QVsGyxlefEeomtJO-dFAOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski's on Back (Yellow)", + "GiftDropId": 10495, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10495, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,sNtmG8EODkOoiAdOi5Hetg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski's on Back (Blue)", + "GiftDropId": 10496, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10496, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Hat (Tan)", + "GiftDropId": 10497, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10497, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,2Mgx6S9f8k2H1AAYbkzjQg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Hat (Red)", + "GiftDropId": 10498, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10498, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,48c18418-01dd-40ff-9dfe-c4cf5f4e1245,ddf429fd-a883-48a5-869b-bc12e44d30bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Hat (Gray)", + "GiftDropId": 10499, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10499, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,6584dada-499e-4d7c-958d-466955b20640,ddf429fd-a883-48a5-869b-bc12e44d30bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Hat (Blue)", + "GiftDropId": 10500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2fadddc1-babd-4cb3-8f5a-0e7c889c3785,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Helmet", + "GiftDropId": 10501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3028ba83-0c85-4e27-a47a-56609fa58b33,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dirt Bike Chest Protector", + "GiftDropId": 10502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Red)", + "GiftDropId": 10503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,ktnYOVEhtEmuxmjM1TjIOQ,EqNosRGf5U-5P1nKIRV3fw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hallow's Dress (Patchwork)", + "GiftDropId": 10505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,oM7qz730lke-off_cQw-cA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Fancy Dress", + "GiftDropId": 10506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,rcdwgNvO30Cvx2ycE1GfHw,JmFzNL5v_0q1p0bgoOlBpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Black)", + "GiftDropId": 10507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (June Pearl)", + "GiftDropId": 10512, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10512, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,46f7Ewe99E6tF2qFaMtQ0g,8IK1U23XlUOV-2ibVznkDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (April Diamond)", + "GiftDropId": 10513, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10513, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,adwzLAQEykK8D5hZGQ6yiA,0Nca5nBUpUquFhExd5dxcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (July Ruby)", + "GiftDropId": 10514, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10514, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,C9CZUwEZeUiuOue4CK4luA,gUxl7WNXlUqFYHZ9eGq1cg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (February Amethyst)", + "GiftDropId": 10515, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10515, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,FgLAEMh1e0GyHO8J8_xj5Q,iM-04HpG6k2N8n-P3XS22w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (January Garnet)", + "GiftDropId": 10516, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10516, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,imOiYzABkUm9C5EVzvjXgg,0eZVIsv7wUyZ0ohLmF1jGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (December Turquoise)", + "GiftDropId": 10517, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10517, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,kQD41xK4dU6dI_6pRkP0qA,aSeusgYlPE6vOBu9Ua_dWA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (September Sapphire)", + "GiftDropId": 10518, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10518, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,mM7I9kDTx0ut243UkWKXvw,YKaJjmMHo02FWwem8nw1yw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (March Aquamarine)", + "GiftDropId": 10519, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10519, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,R0f3hHGY9UqUEW4aR1fssA,KSqfmVTiGUKOKijwGDSwgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (May Emerald)", + "GiftDropId": 10520, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10520, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ro4sD9txVE29_eT2jK-wEg,0YF5bACMsk2sN4tixbJbKw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (October Opal)", + "GiftDropId": 10521, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10521, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,-YsxhNXLAk2qbeXMqwAqng,aNOhXS4nuUeqs0CVw6K7Hg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (November Citrine)", + "GiftDropId": 10522, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10522, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ZsWc8wRafEGl3B7cr6UkzA,ByIfwCtDwU-p9rEfqpjfGg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (August Peridot)", + "GiftDropId": 10523, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10523, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears", + "GiftDropId": 10524, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10524, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,A-xoYdSUF0aEr_XZ9Me-3Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears (White)", + "GiftDropId": 10525, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10525, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,db-JiDmRhUKX69weDLiHsQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears (Black)", + "GiftDropId": 10526, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10526, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,UZY81cnsV0meMp2lg3_UaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears (Brown)", + "GiftDropId": 10527, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10527, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "32b7a724-1112-476d-9ddc-2d04655c9df0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leaf Backpack", + "GiftDropId": 10528, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10528, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hiker Shirt", + "GiftDropId": 10529, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10529, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Ears", + "GiftDropId": 10530, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10530, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,85pvpo4QqUSrdsbofGkoWg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Bat Costume Ears", + "GiftDropId": 10531, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10531, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,f6XXbe_mhEuZJ9in5vDRGw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Ears (White)", + "GiftDropId": 10532, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10532, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,mnYzlq3Rw0-Q89gmc5f9XA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Ears (Black)", + "GiftDropId": 10533, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10533, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Goggles", + "GiftDropId": 10535, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10535, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,3HAMDzfFO06jtYNXm2Bsjg,_Jx5VqGbVUCPwl_SaUCTRA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Goggles (Red)", + "GiftDropId": 10536, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10536, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,kS7jek5tPkSkIgjIF369Vg,_Jx5VqGbVUCPwl_SaUCTRA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Goggles (Blue)", + "GiftDropId": 10537, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10537, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "341dcb4a-818c-4d7c-9ae3-1dabbb79519a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Solar System Hat", + "GiftDropId": 10538, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10538, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34654303-9760-447f-8614-1c26506db994,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Hat", + "GiftDropId": 10539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Blue)", + "GiftDropId": 10540, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10540, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,4effd67c-a52f-4b41-a5b0-04287f91a7bc,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Purple)", + "GiftDropId": 10541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,59a62fa3-9e15-463e-9bd5-3aecdf604c1b,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Black)", + "GiftDropId": 10542, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10542, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,ojTIShRZHEOV1qQRfhwvTA,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Green)", + "GiftDropId": 10543, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10543, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,RU-B71GUF0WPduoSOI1XMg,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Yellow)", + "GiftDropId": 10544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,se0-2ylLD0u6sqCVPkeP6A,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Red)", + "GiftDropId": 10545, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10545, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (White)", + "GiftDropId": 10546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,32dde6dc-e3dc-43ee-9b7c-987bc6778c17,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Orange)", + "GiftDropId": 10547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,88c3ed05-ce41-4a9d-a4a7-8a428d240b3f,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Black)", + "GiftDropId": 10548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,kCqthBeVvUKZA9b76kxuVQ,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Gray)", + "GiftDropId": 10552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,vMqhT19x302aYEo6E9HhOA,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Red)", + "GiftDropId": 10553, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10553, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34f45c5b-fea7-40b4-add7-bc7a37000ab5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Captain Hat ", + "GiftDropId": 10554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34fa5014-e516-42a1-aaa8-91d2b6f59727,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bladed Wings", + "GiftDropId": 10555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34fa5014-e516-42a1-aaa8-91d2b6f59727,fWZekjhIxUWhxgVGTWrVsg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Bladed Wings", + "GiftDropId": 10556, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10556, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Shirt (Red)", + "GiftDropId": 10557, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10557, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,7amHTgEv-UOJSGl0ofo4mw,CUCKsNVnIkavHjcspWAv_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Shirt (Green)", + "GiftDropId": 10558, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10558, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,cKHAetNcgUOxFfDkAPPF9w,CUCKsNVnIkavHjcspWAv_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Shirt (Blue)", + "GiftDropId": 10559, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10559, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "352b49fc-99a2-4f05-a688-866ade1cd394,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Shirt", + "GiftDropId": 10560, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10560, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "352b49fc-99a2-4f05-a688-866ade1cd394,PabSuDB_GEejMahhLvLkJg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Shirt", + "GiftDropId": 10561, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10561, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overcoat (Blue)", + "GiftDropId": 10562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,_3hxdSy9wU6OUPZJA9kGmA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brown Turtleneck Coat", + "GiftDropId": 10563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,B5t5RbzKdEObKDlXLcRp7Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Turtleneck Coat", + "GiftDropId": 10564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,J36t8RwGPUqtLBsF-_UtEw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Purple Turtleneck Coat", + "GiftDropId": 10565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,OaOC278jEE-owjtDP9ZLow", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Yellow Turtleneck Coat", + "GiftDropId": 10566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Skirt (Green)", + "GiftDropId": 10567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,2bb65868-ee12-4871-b50d-64bbc9066f0b,e65530f7-543c-43e9-bf12-b6cda2bc755c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Skirt (Red)", + "GiftDropId": 10568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,VL_OnsbYNkGgGAV16x5tQA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Girlscout Shirt (Mutant)", + "GiftDropId": 10569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,XxVqGAlweUKta__sKdMP3Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Girlscout Shirt", + "GiftDropId": 10570, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10570, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "36b2ccf4-4f42-4dc4-aeaf-f3d10b2a6d30,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Etched Fade Hair ", + "GiftDropId": 10571, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10571, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3739a9e1-6dfa-45d2-af54-cc83a58d436a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cosmic Hero Suit", + "GiftDropId": 10572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3739a9e1-6dfa-45d2-af54-cc83a58d436a,GpYghupLTUK9cuiL-0uHYg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cosmic Hero Vest (Rhythm and Rooms Contest)", + "GiftDropId": 10573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Green)", + "GiftDropId": 10574, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10574, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,09Cg6dOq2kC2-tI5yyGSYg,3fQj_7meDEeQqm_7RfEfxQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Snowman)", + "GiftDropId": 10575, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10575, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,fq0xC9BjLECbsQIZfAvK9A,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Vermont)", + "GiftDropId": 10576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,fTWOc1eEl0aVKXwTYYjA9Q,31nK13dsTkaIf3tGFrZlJQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Ugly Ham)", + "GiftDropId": 10577, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10577, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,i33RmJJCwUem-ADkOwMNQQ,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Pine)", + "GiftDropId": 10578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,LDqcPkvNXE2gFXxbpNkfhA,Too5jpb1w0iQenkjRRS-QA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Red)", + "GiftDropId": 10579, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10579, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,PG6H6px5HkO4X_xPRd1idA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Reindeer)", + "GiftDropId": 10580, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10580, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,XOBIPrKCr02xa4tKj8wN9g,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Frost)", + "GiftDropId": 10581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "37668d3d-c9f4-4bd6-81d4-a4f64ba2d61b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bee Wings", + "GiftDropId": 10582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "37668d3d-c9f4-4bd6-81d4-a4f64ba2d61b,USdUyjIzY0q5af3AeTFCOQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ladybug Wings", + "GiftDropId": 10583, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10583, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "37b68987-73d9-4aae-8e3a-edd24ae890a9,UCxz68a5E0WaZkocDfEf5A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silver Slugger Necklace", + "GiftDropId": 10585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "37f7b94a-92ba-4f5e-b94c-de00acfa4722,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Etched Flattop Hair ", + "GiftDropId": 10586, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10586, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "380a5e35-b4d0-4119-9721-8ce4c0840fbd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Starship Helm", + "GiftDropId": 10587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "383d4bb7-1ffc-4b40-9b7e-cfeaf9ac5fdd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thick Shades (Gold)", + "GiftDropId": 10588, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10588, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Belt (Black)", + "GiftDropId": 10589, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10589, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,0f71b9a2-dd88-435c-a571-4503d12dcf2d,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Belt (Red)", + "GiftDropId": 10590, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10590, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,f4ad4b9e-dd42-4711-9437-5beae51966f6,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Belt (Gold)", + "GiftDropId": 10591, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10591, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "38e7e182-5166-42d9-9ed3-b525b98579c1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teela Armor", + "GiftDropId": 10592, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10592, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3916a22b-ef4b-4ecc-9945-fd57867af597,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hiker Backpack", + "GiftDropId": 10593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Shirt (Purple)", + "GiftDropId": 10594, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10594, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,e3454bc7-c88d-4958-8b81-db3fe5472a1e,da36bbcc-2a9a-4ba2-9e4a-6f52c9b1ef74,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Shirt (Pink)", + "GiftDropId": 10595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39854685-4793-439b-9c64-c98825456a03,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweet Tooth Shirt (Milk Choco)", + "GiftDropId": 10596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39854685-4793-439b-9c64-c98825456a03,qVeFYveZQEmobBTEMg1RTw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweet Tooth Shirt (White Choco)", + "GiftDropId": 10597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39dde11e-7aa1-4bd2-8532-62665e8d8dd3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gentlelady Dress", + "GiftDropId": 10598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Green)", + "GiftDropId": 10599, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10599, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,09Cg6dOq2kC2-tI5yyGSYg,xq7bizx6UEGaMTHB9zI3pw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Snowman)", + "GiftDropId": 10600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,83jS7d-cUUC_GNDcGpiDxw,jQjfiz2i6kaPfrkjnBGxBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Vermont)", + "GiftDropId": 10601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,afWY5VGiF0isGn6qpo4KeQ,_yvss6L59US4-8QYZgcCdA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Frost)", + "GiftDropId": 10602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,e6hTzFc-fEiJe0L4jDVxRQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Reindeer)", + "GiftDropId": 10603, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10603, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,MmGNESXgOkiZ0xCG41E9ig,Nc6jwNeK_kyajH5xKzCNVw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Ugly Ham)", + "GiftDropId": 10604, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10604, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,SWvJWvMDpE-it5PFoPgERg,jQjfiz2i6kaPfrkjnBGxBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Red)", + "GiftDropId": 10605, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10605, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,tyzdtSkR9k-YCnjNvPAT6w,_yvss6L59US4-8QYZgcCdA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Pine)", + "GiftDropId": 10606, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10606, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Yellow)", + "GiftDropId": 10607, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10607, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,09zFwIT2AEaQsijLJR2aSw,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Beige)", + "GiftDropId": 10608, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10608, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,g4_xqu9o9US9lIiBsn2BKQ,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Olive)", + "GiftDropId": 10609, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10609, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,mtIyC_me2EuHSur1ghsKDA,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Red)", + "GiftDropId": 10610, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10610, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,RvVVu7gWUEmofuJiZqevlg,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Purple)", + "GiftDropId": 10611, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10611, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ae0eb82-13ce-43a2-bbc2-99a1cdbec63f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Crab Hat", + "GiftDropId": 10612, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10612, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Belt (Black)", + "GiftDropId": 10613, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10613, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,53dd9e44-7096-438e-a7c3-11d7c307426f,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Belt (Brown)", + "GiftDropId": 10614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,c3c9f89c-580c-43c4-b38b-07394044e0e1,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Belt (Red)", + "GiftDropId": 10615, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10615, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Jacket (Blue)", + "GiftDropId": 10616, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10616, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,556141f7-6fbc-4065-9faa-8d8240a93d7f,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Jacket (Red)", + "GiftDropId": 10617, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10617, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,d81d0b62-e052-46c2-9252-4bc5fb219f53,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Jacket (Gold)", + "GiftDropId": 10618, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10618, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,xGmnUGF-Ck-jP43r8tVVjg,52053afd-9f12-4fec-a358-7eb3fe8c19bb,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Jacket (Green)", + "GiftDropId": 10619, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10619, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b30adc7-a1ad-46ff-96ff-08e656396c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boombox*", + "GiftDropId": 10620, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10620, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b792b59-50c0-4c28-b367-fc694b1d65d1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Belt", + "GiftDropId": 10621, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10621, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b792b59-50c0-4c28-b367-fc694b1d65d1,0Ua_WtxcNEWc_KoRuuHhtg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Utility Belt (White)", + "GiftDropId": 10622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b792b59-50c0-4c28-b367-fc694b1d65d1,PXssHhcJsUmUKGA8T4u85A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Belt (Yellow)", + "GiftDropId": 10623, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10623, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3bb50a88-09ae-48c7-a42c-df5879680eff,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Construction Gloves (Yellow)", + "GiftDropId": 10624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3bceb51c-ef29-4942-8b8b-a15ed4a41451,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moon & Stars Earrings", + "GiftDropId": 10625, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10625, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3bceb51c-ef29-4942-8b8b-a15ed4a41451,4lwF00Rvb0Kr3FJz07HlOQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moon & Stars Earrings (Gold)", + "GiftDropId": 10626, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10626, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3c2ed30c-ca2a-4f9f-9bfa-ffe561c4a686,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Layered Jacket", + "GiftDropId": 10627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3c9acb9e-3353-4359-aa5a-ae9512b086b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Wrists", + "GiftDropId": 10628, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10628, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3c9acb9e-3353-4359-aa5a-ae9512b086b4,dro7VLV8BkGjqpPAbJheYA,bNA44H2wzUy-FkWgyOq1Kw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Wrists (Creators Contest)", + "GiftDropId": 10629, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10629, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3cd52c5d-0c46-41c0-8254-c4542805da31,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pioneer Bonnet", + "GiftDropId": 10630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ce86805-987e-4958-bcc9-57d89c4a5b1a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Glasses", + "GiftDropId": 10631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ce86805-987e-4958-bcc9-57d89c4a5b1a,PGZihr096kC4XZvHfmVMzA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Glasses (Popstar)", + "GiftDropId": 10632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10632, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Black)", + "GiftDropId": 10633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10633, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,37f8378b-b98c-477a-b8c9-9340772800b5,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Creators Contest)", + "GiftDropId": 10634, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10634, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,713781e5-ce47-41c6-a24f-94d42a565e30,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Brown)", + "GiftDropId": 10635, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10635, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Grey)", + "GiftDropId": 10636, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10636, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,c1e430c5-fd8d-4032-9e3f-8d87cc8784da,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (White)", + "GiftDropId": 10637, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10637, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Black)", + "GiftDropId": 10638, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10638, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,9RPbhHJWBkqwpDbMg-QumA,Qzklnrvw0EOiZ1mrj_nAYw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Premium)", + "GiftDropId": 10639, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10639, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,bJXcVtY7qUK101QUAgr05A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Gilded Vest", + "GiftDropId": 10640, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10640, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,ffHKr5EcIU24PbAtWSnalw,bVrkIyADCUiGNYWdmP_HPw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Red)", + "GiftDropId": 10641, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10641, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,m4W5D0Oa9kaWa-8I96YYzA,WF_fg80f30qvHit0vGBwCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Green)", + "GiftDropId": 10642, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10642, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Blue)", + "GiftDropId": 10643, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10643, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,5fb2e235-8c67-4335-b432-edb10db2b139,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Tan)", + "GiftDropId": 10644, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10644, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,67fc9269-8dd8-4d6f-b594-c77e716f2482,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Green)", + "GiftDropId": 10645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,b539777f-48b2-44a2-9d63-17ac703e4d57,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Yellow)", + "GiftDropId": 10646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,b995b419-1897-4c1d-98be-83d551f7ba71,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Grey)", + "GiftDropId": 10647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Brown)", + "GiftDropId": 10648, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10648, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,002b07bb-4256-44ce-8ca4-25510e70b6b5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Yellow)", + "GiftDropId": 10649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Green)", + "GiftDropId": 10650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,90869e86-cbc5-4024-9d08-fcdc41c64eb5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Grey)", + "GiftDropId": 10651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,bzYdPb8GWUS-CgT4wrziIA,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Orange)", + "GiftDropId": 10652, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10652, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,e821aa74-2d47-4388-bcfb-1893b8a83a52,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Black)", + "GiftDropId": 10653, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10653, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Cherry)", + "GiftDropId": 10654, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10654, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Hat (Black)", + "GiftDropId": 10655, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10655, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,17040a88-87f1-4613-b439-3316e33dbd48,71fd06e3-cac8-4923-a09c-ef91183712d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Hat (Red)", + "GiftDropId": 10656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,f9aaa7c5-59bc-486c-9a6e-27a8ac618f84,4cc0ea9f-65af-486f-8319-02b85ab5197f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Hat (Gold)", + "GiftDropId": 10657, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10657, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,jQwNBXyoU0Gk4FyNw6jFxg,4cc0ea9f-65af-486f-8319-02b85ab5197f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Hat (Green)", + "GiftDropId": 10658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e139dd9-4757-43a8-8546-8da70dc17f0a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Stache", + "GiftDropId": 10659, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10659, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e307eca-0850-4d85-8cc1-f5c176bfa7e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Scarf", + "GiftDropId": 10660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Blue)", + "GiftDropId": 10661, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10661, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,4Eck_dNL1UKlIZWsA1YppQ,WeyKw_WS70Cx3NZdOaxGeA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Grey)", + "GiftDropId": 10662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Green)", + "GiftDropId": 10663, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10663, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Black)", + "GiftDropId": 10664, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10664, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,wMo3Bq1aXkCMFSRJft81BQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Punk Jacket", + "GiftDropId": 10665, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10665, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, White)", + "GiftDropId": 10666, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10666, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Primrose)", + "GiftDropId": 10667, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10667, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,Asfe0ZRi50eryD5wlJzgzA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Dahlia)", + "GiftDropId": 10668, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10668, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,B9DJPqTeYUuPnPHRbKzEJA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Poppy)", + "GiftDropId": 10669, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10669, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,fV4H_1ZXx0-OVtlasI-xGQ,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Lily)", + "GiftDropId": 10670, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10670, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,J5VsmblfWU2MeUjNo0fz1Q,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Begonia)", + "GiftDropId": 10671, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10671, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,yXZO-donI0SHB9-TT0jUdw,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Paradise)", + "GiftDropId": 10672, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10672, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ec19cb7-d0a3-4c35-a7e0-dc1f8609d373,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pretzel Vendor Tray", + "GiftDropId": 10673, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10673, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Guitar Pick Necklace", + "GiftDropId": 10674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,0FlA_T8GsUe9PdiZamlP_g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Guitar Pick Necklace (Green)", + "GiftDropId": 10675, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10675, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,2r_gYLhQrkS0bjwaxLecfw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grey Guitar Pick Necklace", + "GiftDropId": 10676, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10676, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,dtuR9xLXVUGzSi2G1DMh7A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Guitar Pick Necklace", + "GiftDropId": 10677, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10677, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,Gct9Vt-L4UiTjAl61hsebQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Guitar Pick Necklace (Orange)", + "GiftDropId": 10678, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10678, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,U8ZZiMEeZ0-qJfcpqBP72A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Guitar Pick Necklace (Purple)", + "GiftDropId": 10679, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10679, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3R_zf8xliEiurVU8GwaItg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Gown", + "GiftDropId": 10680, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10680, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3R_zf8xliEiurVU8GwaItg,iqSyLD37IUejWYa8ndvqnQ,qrXO8rdEaUqUCXC1QVkhsw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Gown (Lilac)", + "GiftDropId": 10681, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10681, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40258a3d-0d5b-4b67-bb99-4bafc6410311,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Helmet (Invasion)", + "GiftDropId": 10682, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10682, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (White)", + "GiftDropId": 10683, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10683, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,1919d319-6cce-4500-8766-15fed6a13fa8,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Gold)", + "GiftDropId": 10684, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10684, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,lBe3yxuE40eBmTrnEHBqQQ,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Purple)", + "GiftDropId": 10685, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10685, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,oZ8k0Qv3SkG-DkY0_dP7UA,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Teal)", + "GiftDropId": 10686, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10686, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (White)", + "GiftDropId": 10687, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10687, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Grey)", + "GiftDropId": 10689, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10689, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Black)", + "GiftDropId": 10690, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10690, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,484b6c13-af22-4ad5-8c43-34c0de095d49,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Light Blue)", + "GiftDropId": 10691, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10691, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Orange, White)", + "GiftDropId": 10692, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10692, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Orange)", + "GiftDropId": 10693, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10693, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Yellow)", + "GiftDropId": 10694, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10694, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,6dd95046-acf8-42fe-ab78-80a334096a9d,56a92c8d-af53-413e-929e-4a9a3cfad780,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Red, White, Blue)", + "GiftDropId": 10695, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10695, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,7d8e55fe-3c34-4b4b-9753-0021f6cc6454,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Cream)", + "GiftDropId": 10696, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10696, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,8377ab96-c908-457f-9fee-b784c9a759f3,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Red, White)", + "GiftDropId": 10697, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10697, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Red)", + "GiftDropId": 10698, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10698, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Pink, White)", + "GiftDropId": 10699, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10699, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Pink)", + "GiftDropId": 10700, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10700, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Blue, White)", + "GiftDropId": 10701, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10701, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Blue)", + "GiftDropId": 10702, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10702, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Green)", + "GiftDropId": 10703, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10703, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,RnrXuIRvMkeW5w1lcNiuaQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Print Headband", + "GiftDropId": 10704, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10704, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,TeSudgm-NEy3DXe3z_VRqg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Retro)", + "GiftDropId": 10705, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10705, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "405f20aa-f888-4e21-b322-34d11017ff16,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frog Backpack", + "GiftDropId": 10706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "405f20aa-f888-4e21-b322-34d11017ff16,f-RfHoCWik6QgNKDhCs7Vw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frog Backpack (Pink)", + "GiftDropId": 10707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Gold)", + "GiftDropId": 10708, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10708, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,E1GfXDLUaUKaG9hTLAfFPA,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Silver, 2019 Fantasy Contest)", + "GiftDropId": 10709, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10709, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,QkfA71-1z0qOiZAVrbzhtA,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Black)", + "GiftDropId": 10710, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10710, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,wCe2yC2U1kyYvPd8Z1rX2w,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (White)", + "GiftDropId": 10711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4095a06c-ccdb-41a0-ac95-5a97372c9a02,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disco Ball Earrings", + "GiftDropId": 10712, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10712, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40c1f20f-182c-4751-afd1-b572b0fd061e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dirt Bike Gloves", + "GiftDropId": 10713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Black)", + "GiftDropId": 10714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,64545dcc-a8eb-4c69-a539-78ee73a2d327,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Green)", + "GiftDropId": 10715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Purple)", + "GiftDropId": 10716, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10716, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,909ed249-ce09-4304-8b02-56794fa7567d,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Red)", + "GiftDropId": 10717, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10717, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,aBQ3R9boek-mYeSYSNvDbQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Blue)", + "GiftDropId": 10718, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10718, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,e02838f8-4029-455a-b35c-dd40f972b05b,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (White)", + "GiftDropId": 10719, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10719, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,Tbrc2MlSlE6mKua8qSoluQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Leather)", + "GiftDropId": 10720, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10720, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Hat (Tan)", + "GiftDropId": 10721, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10721, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,0dabda0d-842c-4d39-a6b9-a8ca3ec20825,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Hat (Green)", + "GiftDropId": 10722, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10722, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Tan)", + "GiftDropId": 10723, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10723, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,_fBrHCkTKUe82QgxCyI-Kw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Black)", + "GiftDropId": 10724, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10724, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,58YffnGSUU6umcI1i0RvZw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Purple)", + "GiftDropId": 10725, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10725, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,c24f1DNZjEmqkt-FibKUjQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Brown)", + "GiftDropId": 10726, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10726, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,CJKB3OO2CkeEVsAK0jeeDA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Pineapple)", + "GiftDropId": 10727, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10727, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,F5vJzMfNB0Ob6Abjadho7Q,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Pink)", + "GiftDropId": 10728, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10728, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,fLWfBSEO6U6aHrDm3nKFEQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Green)", + "GiftDropId": 10729, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10729, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,Iezz6gCFfkKdVcmPXIhunw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Orange)", + "GiftDropId": 10730, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10730, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,k-WZIhNJAkSpIWLxC2D40Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Beanie (Orange)", + "GiftDropId": 10731, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10731, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,SeVmHtrMS0y7gKCYkHcrOA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Gray)", + "GiftDropId": 10732, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10732, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,uDcJZClcFkiNdkEEh9IIyA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Blue)", + "GiftDropId": 10733, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10733, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,vbOUaJsGHEaSfQCivNcMWg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (White)", + "GiftDropId": 10734, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10734, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,VE_cHMHKBE2Wuugoqj4rZg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Beanie (Black)", + "GiftDropId": 10735, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10735, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,wbFPXIg5gUK3QK6YycZexg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Red)", + "GiftDropId": 10736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Brown)", + "GiftDropId": 10737, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10737, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,2APfqVnnQUaDYKi-fQg8jg,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Red)", + "GiftDropId": 10738, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10738, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,bea795cc-aabd-4229-84dd-49ab4f91a445,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Tan)", + "GiftDropId": 10739, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10739, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,da185fbb-ad2b-4f30-87a2-491f24b78ebb,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Black)", + "GiftDropId": 10740, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10740, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42f1a780-1fe1-402e-bf11-176b768e33b9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Strawberry Side Purse", + "GiftDropId": 10741, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10741, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42f1a780-1fe1-402e-bf11-176b768e33b9,jzGTu3tSB0WM430AiMGAAw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Strawberry Side Purse (Pink)", + "GiftDropId": 10742, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10742, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Pinstripe)", + "GiftDropId": 10743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,46970903-9799-4d25-b90a-7162c1f5dbef,c2052d8c-fbcd-4462-8f08-bcf5b3dfde2f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Creators Contest 2)", + "GiftDropId": 10744, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10744, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,4VkPVbBVLE-eJHilwGMAbQ,HTjlzAlWZ0ezY6w3ngSQSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Hearts)", + "GiftDropId": 10745, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10745, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,531b4297-b38b-4362-9854-4f2139ea43be,33ee376a-586e-4aff-a7e4-4213445a3e92,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Herringbone)", + "GiftDropId": 10746, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10746, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,newGzX_zA0eGUX3Iayq5Ag,6Jv4AJGBYUGP_n4sDcz2Kw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Purple)", + "GiftDropId": 10747, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10747, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "43354e59-4938-44bc-81e0-4fba47d0ac12,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Mask (Carnival)", + "GiftDropId": 10748, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10748, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "43354e59-4938-44bc-81e0-4fba47d0ac12,4xp-xZyNWEi_jJCIhAPI3g,Ulie-RkcJEmblLyoucx-JA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Mask (Revelry)", + "GiftDropId": 10749, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10749, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Black)", + "GiftDropId": 10750, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10750, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,BLgkgLeS-EyazgPQxGcavg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (White)", + "GiftDropId": 10751, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10751, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,eb3SmJTIh0628LrZUkI4KQ,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Pink)", + "GiftDropId": 10752, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10752, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,NpvUosaJTECohTIAR38egg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ladybug Dress", + "GiftDropId": 10753, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10753, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,QzjakcO8tUaPeiI5KBLKtg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Blue)", + "GiftDropId": 10754, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10754, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,Yr0mF1EWzEaIyRMOWFiY6w,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Red)", + "GiftDropId": 10755, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10755, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,ZvPidQ57rUS50Qz89ERmLw,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Halloween)", + "GiftDropId": 10756, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10756, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45695fba-5abc-4c5b-b9eb-949d5174d1f5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Gloves (Blue)", + "GiftDropId": 10757, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10757, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45695fba-5abc-4c5b-b9eb-949d5174d1f5,oFjt2tSsa0CJ7j0s3P6b4Q,XD9dH8LF_ECmL0TwXJW1zg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Gloves (Red)", + "GiftDropId": 10758, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10758, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Blue)", + "GiftDropId": 10759, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10759, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Euf1h1qsZ02evDsyoHYbPQ,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Orange)", + "GiftDropId": 10760, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10760, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,JVZHZm6nGEqE2zEEPoHbwA,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Green)", + "GiftDropId": 10761, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10761, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,L2iFQcL170OajqfW7t6sVw,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Yellow)", + "GiftDropId": 10762, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10762, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,lsyYlxY9o0a3TbUrHkxeyQ,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Purple)", + "GiftDropId": 10763, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10763, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,zlqLrGEa8E2WW9ey_szREA,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Pink)", + "GiftDropId": 10764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ff0a0-ad68-4337-9399-57e3b03e4bf6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yeti Hat", + "GiftDropId": 10765, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10765, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Skates on Neck (Slate)", + "GiftDropId": 10766, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10766, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,ENYQugZRP06SDh6d-oJcjQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Skates on Neck (White)", + "GiftDropId": 10767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,KdsZQVCA-E2TiEozsSUv7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Skates on Neck (Brown)", + "GiftDropId": 10768, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10768, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45eaab67-19c2-4601-8f80-3565a4dceba4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pompadour Hair", + "GiftDropId": 10770, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10770, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45f5e714-8a5f-4385-a97f-675066167011,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Seventies Stache", + "GiftDropId": 10771, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10771, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Grey)", + "GiftDropId": 10772, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10772, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,bTAQ-CkyRUOZoXqXuap2Ig", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Basketball)", + "GiftDropId": 10773, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10773, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,crl8VlZ59kGxG01noGEWmA,EckOEU0mJkGIVDvYoKBN9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Gilded)", + "GiftDropId": 10774, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10774, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,l2BbgbHCe0S_SDUbfmpSeQ,XHJ0lW4zYkGcL5UyI1HfEg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Premium)", + "GiftDropId": 10775, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10775, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,WqX8pAB7LkyPKEzIUCtnNg,8Y2F-cVStkSn9YB47VCoKA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Holiday)", + "GiftDropId": 10776, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10776, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Black)", + "GiftDropId": 10777, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10777, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,2cf2b644-3fa6-449c-9fe8-d0ab917f3106,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Gold)", + "GiftDropId": 10778, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10778, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,30c61e63-5e09-4a6f-8915-1e1fe4d55cf0,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Silver)", + "GiftDropId": 10779, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10779, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (High Fashion)", + "GiftDropId": 10780, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10780, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Buckaneer, Collector's Edition)\t", + "GiftDropId": 10781, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10781, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,-C1ui-T280GEfW6-vPQ-ig", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Brim Hat (Basketball)", + "GiftDropId": 10782, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10782, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,cpTKHXjj0kulivZCKVQqiA,Mrf17aidXEeCF-fFURUUcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Hyper Ramen)", + "GiftDropId": 10783, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10783, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Sticker, Goblins)", + "GiftDropId": 10784, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10784, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Brown)", + "GiftDropId": 10785, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10785, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,23428ca9-be75-4146-b400-df01d1dadac9,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Tan)", + "GiftDropId": 10786, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10786, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,7b82c3c5-fd1f-45ec-b83f-e32668aa8dce,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Black)", + "GiftDropId": 10787, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10787, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,qJGX62O_HUiZWN61NAc1Lg,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Red)", + "GiftDropId": 10788, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10788, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Orange)", + "GiftDropId": 10789, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10789, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,4ElTihrMA0ipcgeb9UG01Q,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Purple)", + "GiftDropId": 10790, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10790, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,68273c9e-96d6-4ddb-aaab-d99229e864d5,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (White)", + "GiftDropId": 10791, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10791, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a089bcc6-798d-4777-98e2-7afd290dc6b6,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Black)", + "GiftDropId": 10792, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10792, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a36d252b-16ac-4a82-bece-de145147e7d9,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Pink)", + "GiftDropId": 10793, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10793, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Blue)", + "GiftDropId": 10794, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10794, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Red)", + "GiftDropId": 10795, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10795, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,LVnNy7-nFkyvi19nNcdFgQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Gloves (Invasion)", + "GiftDropId": 10796, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10796, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,uWe5nxA4qkaicmXm3tMw9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Gloves (Invasion 2)", + "GiftDropId": 10797, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10797, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Armor", + "GiftDropId": 10798, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10798, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,M5QwJJRRBUy42HLyp6ghtg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Armor (Jade)", + "GiftDropId": 10799, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10799, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4885683e-a87e-4d27-990a-c16f1df7a28f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Gloves", + "GiftDropId": 10800, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10800, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4885683e-a87e-4d27-990a-c16f1df7a28f,hKBSHovOeUy84yCbvutkOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Gloves", + "GiftDropId": 10801, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10801, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Black)", + "GiftDropId": 10802, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10802, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,3Xlg70ev6UqdcIAmJ9hmlA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Yellow)", + "GiftDropId": 10803, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10803, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,9tTuREkoQkW0ycqOjWXsiA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (White)", + "GiftDropId": 10804, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10804, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,gT0WA7Y1H0my5uMlteIMMg,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Red)", + "GiftDropId": 10806, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10806, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,m7KXVnULz0iHvKfCFzFoyw,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Pink)", + "GiftDropId": 10808, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10808, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,MVkY4sU5BkGC4QhweRiyIA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Orange)", + "GiftDropId": 10809, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10809, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,QCOMyeCUK0Gudx4ljBmAdw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Musical Notes)", + "GiftDropId": 10810, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10810, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,RL6HkufaJ0yubTpCGVI9eQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Green)", + "GiftDropId": 10811, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10811, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,t2bByt5oUEG90PMMePCP6A,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Gray)", + "GiftDropId": 10812, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10812, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,ux9DQVSRyU-_5GA-t197OA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Purple)", + "GiftDropId": 10813, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10813, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,-XSM6ZcSjE-vrWL7jyF4fQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Blue)", + "GiftDropId": 10814, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10814, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Black)", + "GiftDropId": 10815, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10815, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,COZbkLDc20mdUlWSkqMX-w,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Blue)", + "GiftDropId": 10816, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10816, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,gsHBUqA1gE2XNTPA3VvBLQ,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Brown)", + "GiftDropId": 10817, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10817, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,JUQn0_PLIkytCrkAg0FflQ,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Tan)", + "GiftDropId": 10818, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10818, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,SDbpnjVYmEGQneK5fhZ0Cw,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Red)", + "GiftDropId": 10819, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10819, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,uwoWPY4YjEmZSQcNCrx1Gg,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Green)", + "GiftDropId": 10820, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10820, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49397e16-1027-4286-9bc4-b59eae565ff0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Side Pony Hair", + "GiftDropId": 10821, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10821, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Folded Bandana (Red) ", + "GiftDropId": 10822, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10822, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,0oMo4q5cLEi9LGpkOFIlkA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Riveter Bandana", + "GiftDropId": 10823, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10823, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "FNAF Hoodie", + "GiftDropId": 10824, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10824, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,a2mUuKOr-UOM5nPpR8dSMw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoodie (Em Beihold)", + "GiftDropId": 10826, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10826, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,bS-St6XLHkSwKt41J7BmKw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alo Yoga Hoodie", + "GiftDropId": 10827, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10827, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,DOY6LpHq8kui8yDWGsNgZw,48yVsRt8sU6jf3P4wlPA8Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Hoodie (2020)", + "GiftDropId": 10828, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "2020 Rec Con", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10828, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,G_QPd8YBe0-n8ywAGLMKBg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoodie (Jessia)", + "GiftDropId": 10829, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10829, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,HUxqkzeE-Umq96TgSn0Hbg,48yVsRt8sU6jf3P4wlPA8Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Hoodie (2021)", + "GiftDropId": 10830, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "2021 Rec Con", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10830, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,Kuh-HrhzTUmuGaw7cpLUMg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Broken Heart Hoodie", + "GiftDropId": 10832, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10832, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,QMScBauef0uOE48-YcDcCg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dino Hoodie", + "GiftDropId": 10833, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10833, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,tkuP0sNwjEO3XH5Lf_KqkA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Hoodie (Black)", + "GiftDropId": 10835, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10835, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4abc2ac4-e60c-49b1-9ac8-4d4751ed78ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dino Hat", + "GiftDropId": 10836, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10836, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4b4d239a-ddf3-4f8c-a58a-b8f4c031ae26,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Cuffs", + "GiftDropId": 10837, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10837, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4b51679e-96e4-4a11-96fe-1d2754d12481,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clock Chain (Gold)", + "GiftDropId": 10838, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10838, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4b72736e-6fca-4961-98f2-1d4e199eb1e0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rogue Gloves", + "GiftDropId": 10839, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10839, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c032271-a0db-47b0-bfc6-4c330c2c4b21,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alpaca Lights Sweater", + "GiftDropId": 10840, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10840, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c52478a-b2c9-4520-8f88-52f2262cc6bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hot Dog Suit (Mustard)", + "GiftDropId": 10841, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10841, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c52478a-b2c9-4520-8f88-52f2262cc6bf,YR7P-KQLGUKPF7JbW85K7g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hot Dog Suit (Ketchup)", + "GiftDropId": 10842, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10842, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c673a35-c10f-4a8c-b8e0-96a50fe5b97f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pegasus Wings", + "GiftDropId": 10843, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10843, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Orange)", + "GiftDropId": 10844, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10844, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,1pJN1AfxgUmUN_bTaH3rng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Iso Suit (Invasion)", + "GiftDropId": 10845, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10845, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,4ElTihrMA0ipcgeb9UG01Q,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Purple)", + "GiftDropId": 10846, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10846, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,68273c9e-96d6-4ddb-aaab-d99229e864d5,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (White)", + "GiftDropId": 10847, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10847, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a089bcc6-798d-4777-98e2-7afd290dc6b6,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Black)", + "GiftDropId": 10848, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10848, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a36d252b-16ac-4a82-bece-de145147e7d9,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Pink)", + "GiftDropId": 10849, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10849, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Blue)", + "GiftDropId": 10850, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10850, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Red)", + "GiftDropId": 10851, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10851, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d507dfa-4a99-4ac0-8537-229e9dc0eb4a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Tank Top (Orange)", + "GiftDropId": 10852, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10852, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Red)", + "GiftDropId": 10853, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10853, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,8053b5e5-0f67-4329-a45d-1ee9fc830820,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Yellow)", + "GiftDropId": 10854, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10854, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,b444ed0a-eab5-4bd6-af34-d080de74a149,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Orange)", + "GiftDropId": 10855, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10855, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,fe5288bc-0e02-4ea3-b17d-dee0e576979d,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Green)", + "GiftDropId": 10856, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10856, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4e42e02e-33fd-4ff9-b74e-9bde26253c35,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Wrist", + "GiftDropId": 10857, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10857, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4eaaad39-aa44-4791-8b67-2eafa8305850,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Afro Puffs Hair", + "GiftDropId": 10858, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10858, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ee2133d-c419-4fbc-9117-746d756a250d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt Bag (Cosmic)", + "GiftDropId": 10859, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10859, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Triton)", + "GiftDropId": 10861, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10861, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,CahBzgN3D0y46AQsvGC14A,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Leviathan)", + "GiftDropId": 10862, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10862, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,Su7kiW24d0KapNns96JoFQ,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Kraken)", + "GiftDropId": 10863, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10863, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "50c9c6f8-2963-4ef3-95d5-e999a898269f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Saija Gloves", + "GiftDropId": 10864, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10864, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5154be09-bb8a-4917-95a0-51c91b6a4e09,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hatter Suit (Wonderland Contest)", + "GiftDropId": 10865, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10865, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Red)", + "GiftDropId": 10866, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10866, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,1acb1f56-4509-449f-9c6a-065bdeaa9ee3,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Grey)", + "GiftDropId": 10867, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10867, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,e98c3f98-7844-4d6e-a21c-05027033c18c,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Yellow)", + "GiftDropId": 10868, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10868, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "51b85276-3a40-4c40-93a1-9df307c3e78e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Messenger Bag", + "GiftDropId": 10869, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10869, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "51e5467f-d310-44f8-80c3-17d7e27450bf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Belt", + "GiftDropId": 10870, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10870, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "51e5467f-d310-44f8-80c3-17d7e27450bf,pue_FwobQEiaVubgc5eMUg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Belt", + "GiftDropId": 10871, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10871, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52268f02-b8ba-4a8e-ab3a-7d5928f637a6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Armor", + "GiftDropId": 10872, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10872, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52268f02-b8ba-4a8e-ab3a-7d5928f637a6,RjX1VTHHoEiNBfXkkniDgw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Torso (Folklore Contest)", + "GiftDropId": 10873, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10873, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Brown)", + "GiftDropId": 10874, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10874, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,002b07bb-4256-44ce-8ca4-25510e70b6b5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Yellow)", + "GiftDropId": 10875, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10875, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Green)", + "GiftDropId": 10876, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10876, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,90869e86-cbc5-4024-9d08-fcdc41c64eb5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Grey)", + "GiftDropId": 10877, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10877, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,bzYdPb8GWUS-CgT4wrziIA,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Orange)", + "GiftDropId": 10878, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10878, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,e821aa74-2d47-4388-bcfb-1893b8a83a52,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Black)", + "GiftDropId": 10879, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10879, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Cherry)", + "GiftDropId": 10880, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10880, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Keytar (Teal/Pink)*", + "GiftDropId": 10881, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10881, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,GCwZMIr720iH3TszOb6SQA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Keytar (Black/Red)*", + "GiftDropId": 10882, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10882, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,LmMg-y8w8kiXdre4vUJrZA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Keytar (Silver)*", + "GiftDropId": 10883, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10883, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,ze-eTUX6WUqE-n5nIcH0aA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Keytar (Lime)*", + "GiftDropId": 10884, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10884, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Teal)", + "GiftDropId": 10885, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10885, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,42ZNGHXMvU29yo9s9tVpOQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Blue)", + "GiftDropId": 10886, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10886, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,6c-AhDM6K0iHbNMf4BNiUg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Purple)", + "GiftDropId": 10887, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "Breakdance inspired colorway", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10887, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,FvEjo9let0e_Sr-kWq5AvQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Orange)", + "GiftDropId": 10888, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10888, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,HncURj5yi0ykk2cVyCZ4Sw,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Red)", + "GiftDropId": 10889, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10889, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,VDo682NvSUa8xYn8zTX-AQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Yellow)", + "GiftDropId": 10890, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10890, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5362d685-fc55-4b43-85a5-cc3d6cad3f69,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Galaxy)", + "GiftDropId": 10891, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10891, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "54ab4eb0-e28a-438f-9977-1ae8d642d136,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (S.)*", + "GiftDropId": 10892, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10892, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "55b1ada2-aa1a-4b8a-bbeb-f10ba77c8318,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Hat", + "GiftDropId": 10893, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10893, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "55b1ada2-aa1a-4b8a-bbeb-f10ba77c8318,ZYjUekG8JkC9uPkm4xH8ww", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Hat", + "GiftDropId": 10894, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10894, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Cape (Rouge)", + "GiftDropId": 10895, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10895, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,eEsEJ78Me02dXnp6gTuZRw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Cape (Blanc)", + "GiftDropId": 10896, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10896, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,gYXppJSpDUG9MB0xej4-kQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Cape (Jaune)", + "GiftDropId": 10897, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10897, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,VF7QrfNdC0ex5p62bkdt7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Cape (Vert)", + "GiftDropId": 10898, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10898, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (Orange)", + "GiftDropId": 10899, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10899, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,J-K34UX_B0yObjQI9tn0vQ,m0R4Jtf4HES8krxMnwIWFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (High Seas Contest)", + "GiftDropId": 10900, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10900, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,VqtOYBiKRkaSW4xAlBxQgg,xTqtLPQVyEKjAQZYl6HGow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (Blue)", + "GiftDropId": 10901, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10901, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (White)", + "GiftDropId": 10902, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10902, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,18b52db5-0261-46a0-9214-ff510d455ed9,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Orange)", + "GiftDropId": 10903, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10903, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,55b4e661-43e1-4708-82d5-2dd2bebd4f45,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Blue)", + "GiftDropId": 10904, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10904, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,8c74ee27-3d56-401b-8a8c-7868a80770e8,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Black)", + "GiftDropId": 10905, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10905, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5873814e-c9a1-4042-b96d-2aa0e0d52e2a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Mystery Contest)", + "GiftDropId": 10906, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10906, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "587ca2bb-dd42-42bf-833f-4e2a97349866,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Stethoscope", + "GiftDropId": 10907, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10907, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "591af332-a01c-454d-89dd-5ed6ae3ed09c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lucky Clover Top Hat", + "GiftDropId": 10908, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10908, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5944a66e-b386-43d9-a4b6-7b4a8e987fd8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Heart Sunglasses", + "GiftDropId": 10909, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10909, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "594a69fb-9f76-4f83-b2aa-94f0e72e996c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Helmet", + "GiftDropId": 10910, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10910, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "594a69fb-9f76-4f83-b2aa-94f0e72e996c,GL6frGGo2E25VLcw61otXA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Helmet (Folklore Contest)", + "GiftDropId": 10911, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10911, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59bbb9d4-4fdb-4400-90d5-244643dca4ce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Toy Helmet", + "GiftDropId": 10912, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10912, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Orange)", + "GiftDropId": 10913, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10913, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,4ElTihrMA0ipcgeb9UG01Q,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Purple)", + "GiftDropId": 10914, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10914, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,68273c9e-96d6-4ddb-aaab-d99229e864d5,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (White)", + "GiftDropId": 10915, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10915, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a089bcc6-798d-4777-98e2-7afd290dc6b6,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Black)", + "GiftDropId": 10916, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10916, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a36d252b-16ac-4a82-bece-de145147e7d9,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Pink)", + "GiftDropId": 10917, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10917, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,c8cc9589-4831-4e73-a865-ef8c139a2ba7,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Blue)", + "GiftDropId": 10918, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10918, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Red)", + "GiftDropId": 10919, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10919, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (White)", + "GiftDropId": 10920, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10920, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,61ff7a02-50ff-49ea-b95e-c31b95a30c8e,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Black)", + "GiftDropId": 10922, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10922, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,d8d490aa-7088-4163-9305-1441367f490c,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Orange)", + "GiftDropId": 10923, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10923, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,UfhOpLemQ0ypYh7CIC3W1Q,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Gray)", + "GiftDropId": 10925, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10925, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,X24EvVokeUqyDNdqevV2EA,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Red)", + "GiftDropId": 10927, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10927, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5ac25e5a-8c8e-445c-82a4-7272baec1eb5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Head Mirror", + "GiftDropId": 10928, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10928, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Orange)", + "GiftDropId": 10929, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10929, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Green)", + "GiftDropId": 10930, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10930, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Green)", + "GiftDropId": 10931, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10931, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Green)", + "GiftDropId": 10932, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10932, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, White)", + "GiftDropId": 10933, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10933, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, White)", + "GiftDropId": 10934, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10934, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, White)", + "GiftDropId": 10935, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10935, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6o6sNWyPoUCcKJBHW0KC9w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Yellow)", + "GiftDropId": 10936, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10936, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Red)", + "GiftDropId": 10937, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10937, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Red)", + "GiftDropId": 10938, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10938, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Red)", + "GiftDropId": 10939, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10939, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Blue)", + "GiftDropId": 10940, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10940, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Blue)", + "GiftDropId": 10941, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10941, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Blue)", + "GiftDropId": 10942, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10942, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Black)\t", + "GiftDropId": 10943, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10943, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Polka Dot Cowboy Scarf ", + "GiftDropId": 10944, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10944, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Plaid Cowboy Scarf", + "GiftDropId": 10945, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10945, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,X1OFXyDyXES3CgMpIyV3nQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Pink)", + "GiftDropId": 10946, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10946, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Purple)", + "GiftDropId": 10947, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10947, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Scarf Mask (Plaid/Purple)", + "GiftDropId": 10948, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10948, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Green)", + "GiftDropId": 10950, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10950, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,0c433086-9501-48c4-8d0e-4474eb420c61,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Red)", + "GiftDropId": 10951, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10951, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,1VGZ1QCvcU6rsKVkUDBNjQ,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Blue)", + "GiftDropId": 10952, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10952, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,2be2f040-68e4-44dd-9099-29f11110f3a4,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Black)", + "GiftDropId": 10953, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10953, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,47da86b9-4e6e-423c-b8c4-ea6bf8472509,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Yellow)", + "GiftDropId": 10954, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10954, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,8hUBfmq28EixYjv92Xcrgg,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Grey)", + "GiftDropId": 10955, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10955, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,d5987fee-e3cc-4336-853a-5df57f73df05,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Tan)", + "GiftDropId": 10956, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10956, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Jacket", + "GiftDropId": 10957, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10957, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,ZM6W70pGt0aAPLYf4DykeA,icHpJch4uUeGdhoLkawyyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Jacket (Green)", + "GiftDropId": 10958, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10958, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (Orange)", + "GiftDropId": 10959, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10959, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,GWi1rEebqkCV_TS2WzQhcA,4zPm9miF5UOouEWFpOxYZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (High Seas Contest)", + "GiftDropId": 10960, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10960, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,V_duN2oWaUmmao1xHhzCJA,Uvarm_CwTUWWQYZvzI8OaQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (Blue)", + "GiftDropId": 10961, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10961, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Green)", + "GiftDropId": 10962, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10962, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,29EZ6r2SsUakWjzuevxeoA,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Blue)", + "GiftDropId": 10963, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10963, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,7221132e-053a-4c58-b719-ed3c8558907d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Red)", + "GiftDropId": 10964, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10964, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,74b009f4-e128-4c59-8a6a-4c0ba6119bde,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Black)", + "GiftDropId": 10965, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10965, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,d1eb3573-672c-4bb4-9ec5-7c81e6a38d3d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Tan)", + "GiftDropId": 10966, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10966, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,e548124c-d7f3-45de-aaa0-f66130eca576,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Yellow)", + "GiftDropId": 10967, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10967, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Grey)", + "GiftDropId": 10968, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10968, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Tan)", + "GiftDropId": 10969, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10969, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,fEPwvuJCWkGBe4IekXpmLw,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Black)", + "GiftDropId": 10970, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10970, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,MQOxmUk-mUG-Ee9m9nX31Q,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Grey)", + "GiftDropId": 10971, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10971, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5beeb4c4-f276-4eae-87aa-9302e45b05b7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cornrows Hair", + "GiftDropId": 10972, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10972, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5cd08cfb-c729-4c30-96d9-6a99bb934d91,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Sash", + "GiftDropId": 10973, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10973, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d13a7a2-8213-40e6-90a6-efdd76a3fdcb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowing Hair", + "GiftDropId": 10974, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10974, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Striped, Red)", + "GiftDropId": 10975, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10975, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, White)", + "GiftDropId": 10976, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10976, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, White)", + "GiftDropId": 10977, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10977, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, Red)", + "GiftDropId": 10978, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10978, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, Red)", + "GiftDropId": 10979, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10979, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, Blue)", + "GiftDropId": 10980, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10980, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, Blue)", + "GiftDropId": 10981, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10981, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d2a0b8a-10f0-4f09-b145-84a4b4dc58f9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Bloom Antlers", + "GiftDropId": 10982, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10982, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d2a0b8a-10f0-4f09-b145-84a4b4dc58f9,MtbewwIGSEu-F9Ks_Ibb4g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Bloom Antlers (Solstice Contest)", + "GiftDropId": 10983, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10983, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Hat", + "GiftDropId": 10984, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10984, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,3oar1K99PU2OTGaT0i7Hag", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Hat (Vert)", + "GiftDropId": 10985, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10985, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,RTrcYpLtukm83lwAfWi5WA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Hat (Purple)", + "GiftDropId": 10986, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10986, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,T5z4W4H8sU-2NxpepVH0Qg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Hat (Noir)", + "GiftDropId": 10987, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10987, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5da97d5c-0d1b-4b0d-a2be-d255871d833d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turkey Backpack", + "GiftDropId": 10988, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10988, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Grey)", + "GiftDropId": 10989, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10989, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,0ba92db2-690a-44ce-92f4-130e9503b6c1,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Blue)", + "GiftDropId": 10990, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10990, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,-7uPJmO-wUu3cUhqo0caPg,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Tan)", + "GiftDropId": 10991, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10991, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Green)", + "GiftDropId": 10992, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10992, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9aYT6E9sd0OSavlmkhtkGw,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (White)", + "GiftDropId": 10993, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10993, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,H-ypJNyVSka9as7rDFRZ_A,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Red)", + "GiftDropId": 10994, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10994, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e9bbda6-d681-42b1-9cc4-5758acf34bc0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Necklace (Gold)", + "GiftDropId": 10995, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10995, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f1bc3c2-dfbb-4258-9b10-608535e34db2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Hands", + "GiftDropId": 10996, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10996, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Book of Elseware Vol I* (Cursed)", + "GiftDropId": 10997, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10997, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,14Gft1zCQECXPxPmiUc5VQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cosmic Cultist Book", + "GiftDropId": 10998, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10998, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,7ziZgKKqXkuyo9v77chIlA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cipher of Elseware (Uncursed)*", + "GiftDropId": 10999, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10999, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,bpzKQ-B4_0KpMPf4ixTumw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Book of Elseware Vol III (Cursed)*", + "GiftDropId": 11000, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11000, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,hKkdXrgEQ0SStVnZsXu0uQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Book of Elseware Vol II* (Cursed)", + "GiftDropId": 11001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (Teal)", + "GiftDropId": 11002, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11002, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,3b2cfc85-4e2a-4e0d-b738-c296ae8692f8,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (Pink)", + "GiftDropId": 11003, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11003, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,78eb0969-f246-4cac-acd6-295df7c092e4,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (White)", + "GiftDropId": 11004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,zwKRET9pP0O5uhPU_yHrlg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ballerina Leotard", + "GiftDropId": 11006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Silver)", + "GiftDropId": 11007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,565c17e0-496d-45bd-a2c3-564e118c06cc,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Black)", + "GiftDropId": 11008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Gold)", + "GiftDropId": 11009, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11009, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f6a7dee-0b44-4138-b3a7-a079dbc63e83,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Monkey Backpack", + "GiftDropId": 11010, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11010, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fb2ea11-cd9c-45cb-be1e-e7ff3e0fd3c3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Helmet (Jade)", + "GiftDropId": 11011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fb2ea11-cd9c-45cb-be1e-e7ff3e0fd3c3,tdECtZp1UUuRRKHV60coyA,PIg3ywG2J0CiGUPpm1A6Kw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Helmet (Red, Gold)", + "GiftDropId": 11012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Summit)", + "GiftDropId": 11013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,fXNkMWFMV0aXalK_y_8SHw,SSY8ZYMgaE2Bl4oFmMjKQA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Chill)", + "GiftDropId": 11014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,iDnij3VaEkSAnpt5QRevig", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Ski Buddy Goggles", + "GiftDropId": 11015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,IQMO6E5ofkyC3S-IgrKyIw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Green)", + "GiftDropId": 11016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,n741vKj02kyt8B5fT6s2og", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Pink)", + "GiftDropId": 11017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,oCB1ZeT0hU6uQGhHNsEvkg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Slate)", + "GiftDropId": 11018, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11018, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Skirt", + "GiftDropId": 11019, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11019, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,FpvZjltPtU6AKTBphz3ZMA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Skirt (Burgundy)", + "GiftDropId": 11020, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11020, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "60cc933c-5bc8-49c1-aa6b-9c2adfef088e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Necklace (Musical Note)", + "GiftDropId": 11023, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11023, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,5Q9E76b580CnMWIg6zbPwA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blueberry Gamer Tucked Tee", + "GiftDropId": 11026, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11026, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,9lPZEIVbbUK1hdR1aVPLwA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Boots Shirts", + "GiftDropId": 11027, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11027, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,LXR5H_-7JUO7F3JkJh3ouQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Strawberry Gamer Tucked Tee", + "GiftDropId": 11030, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11030, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,mKWQMgBuTEq9EwXBTusuJw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tucked Gamer Tee (Pineapple)", + "GiftDropId": 11031, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11031, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,N2ofIXeSBECHTBAoP2yQ6w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grape Gamer Tucked Tee", + "GiftDropId": 11032, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11032, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,r4O0JuB0dke1IoOEqW4nkg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Art Festival 2022 Shirt (Gray)", + "GiftDropId": 11034, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11034, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,rg6sMjE1XkijY4Pq73pjcg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lime Gamer Tucked Tee", + "GiftDropId": 11035, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11035, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,t9-7AjmLgEWawcyWCD4xVw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raspberry Gamer Tucked Tee", + "GiftDropId": 11036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,UJRSCFfPq0K0yV0ETS3uSQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Art Festival 2022 Shirt (Orange)", + "GiftDropId": 11037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,vtXUyu-xmkaYtOCL9r3PsA,VtepaI2fvUWhcvNmpQ8r6Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2021 Shirt", + "GiftDropId": 11038, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11038, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,W_RwnySBMk2GlrknM7NDrg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2022 Shirt", + "GiftDropId": 11039, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11039, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "61969200-2790-41e0-bccb-d9feff8c7b7d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Holiday Elf Wrist", + "GiftDropId": 11040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "61ba3c90-c81e-4deb-bc79-50c0f1fe3e83,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Beard", + "GiftDropId": 11041, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11041, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho", + "GiftDropId": 11042, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11042, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,EmTrJKm8cUy8_BHAvP8Meg,kxkqq5UA_kCM6lFsFe3dvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho (Grey)", + "GiftDropId": 11043, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11043, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,Gep43Ix44EWybJ80XAyDbg,kxkqq5UA_kCM6lFsFe3dvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho (Teal)", + "GiftDropId": 11044, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11044, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,T670e7nOakqKl3L6LTlTtA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho (Steampunk)", + "GiftDropId": 11045, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11045, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62ce4109-8dee-4895-bf1b-bfa143db4c7e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Slim Blazer (Teal)", + "GiftDropId": 11046, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11046, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62ce4109-8dee-4895-bf1b-bfa143db4c7e,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,0f36bb97-c61b-4281-929f-ff1d0d11be86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Slim Blazer (Blue)", + "GiftDropId": 11047, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11047, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62ce4109-8dee-4895-bf1b-bfa143db4c7e,cd5d7285-202d-42d0-b93f-04245875793e,0f36bb97-c61b-4281-929f-ff1d0d11be86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Slim Blazer (Green)", + "GiftDropId": 11048, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11048, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62e480de-27e9-4719-adac-360698c7a2c1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Hat", + "GiftDropId": 11049, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11049, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rogue Cape", + "GiftDropId": 11050, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11050, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,ay9ktLnHfUKdj0-q52Gvyg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Constellation Cape (Sunset)", + "GiftDropId": 11051, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11051, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,C64nh9MHv0mlUEP9-s7sJw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Constellation Cape", + "GiftDropId": 11052, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11052, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,WJ27X_UnfUmFKpY6mRk_Rw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Constellation Cape (Aurora)", + "GiftDropId": 11053, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11053, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,YVkcCfJZekq7GvdMUy2IWg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Cape (Invasion)", + "GiftDropId": 11054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6423f23e-dde3-4428-96f5-6091027c92cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Cunning) ", + "GiftDropId": 11055, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11055, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (Black)", + "GiftDropId": 11056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,0Ytm7G4_lkmZWPA_YfaIeQ,KfM7veOVlE-dNZmsbDNZBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (Orange)", + "GiftDropId": 11057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,dZM1bs6_MU2F6Vz1mH0QKg,KfM7veOVlE-dNZmsbDNZBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (White)", + "GiftDropId": 11058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Gloves", + "GiftDropId": 11059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,D-XJyw1BPE-m0gXpvcXrQw,FsirX90YM0y5lk7mnqDnEQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Gloves (Red)", + "GiftDropId": 11060, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11060, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,-Moek0heVkWtKpTw9oZ0EA,FsirX90YM0y5lk7mnqDnEQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Gloves (Blue)", + "GiftDropId": 11061, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11061, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Zzz)", + "GiftDropId": 11062, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11062, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,_jkPDSXFUkSU_yOfutQ7BA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Zonked)", + "GiftDropId": 11063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,j66We9SYr0SNQ2ufZqIqhA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Sandman)", + "GiftDropId": 11064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,MLB_YJtNtUi2Qw9D4a5i2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Starry Night Robe", + "GiftDropId": 11065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,uDJ5ZqU1f0CiOAH8WY22Yw,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Dozy)", + "GiftDropId": 11066, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11066, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Pride)", + "GiftDropId": 11067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,a0oe68pikUykAgrRo-axkQ,KFq8d1VsO0KDqBWUj4qRFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Rally)", + "GiftDropId": 11068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,cFQ1Z7_wp0meS8wdC1hemQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Suit Skirt", + "GiftDropId": 11069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,eWf2c62cqEOkRukLzhl_wQ,KFq8d1VsO0KDqBWUj4qRFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Victory)", + "GiftDropId": 11070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Vest (Black)", + "GiftDropId": 11071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,39f04eee-3a58-4e53-9f5e-7e995d46ed71,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Vest (Red)", + "GiftDropId": 11072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,6y_fzLhG7E65Px3-CYiyXQ,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Vest (Crimson)", + "GiftDropId": 11073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,85eb7f47-bb31-4c66-a8b3-562d35028e6c,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Vest (Brown)", + "GiftDropId": 11074, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11074, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "665d4fe9-88dd-4fae-97ad-201884a6ca02,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lasso Belt", + "GiftDropId": 11075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "66f8f55d-cad4-4afb-93e8-b6bdf04b37b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Green Sequins)", + "GiftDropId": 11076, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11076, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Red)", + "GiftDropId": 11077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,_VfdBTi7PU276qzsYKayow,qSsEcadcm0-twR1TvVcgYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Pouncing Tiger)", + "GiftDropId": 11078, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11078, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Dtis2HpVzkelZb6M9mW5TQ,iqGv6iRJ-UGbofv8-aHKVA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Green Lightning)", + "GiftDropId": 11079, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11079, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Kcyp8sv0202Puym1Wf86xg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Green)", + "GiftDropId": 11080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,r_QZLd-Aw0SsdQb_uYroog,eYGWiwqSGUG7Hx1R3I-11A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Shamrock)", + "GiftDropId": 11081, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11081, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,xNjX_6-aREm0cYZObVLiAg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Blue)", + "GiftDropId": 11082, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11082, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67c0f944-2f70-46d2-8588-2f67028f8bed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowgirl Gloves", + "GiftDropId": 11083, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11083, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67d8d599-4611-428f-98cd-98d8a527ace5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Dress", + "GiftDropId": 11084, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11084, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67d8d599-4611-428f-98cd-98d8a527ace5,4qSWIO-cy0q5JWHp7tagHA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Dress (Red)", + "GiftDropId": 11085, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11085, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "686ac516-630f-4989-9c99-0b8d055a00f9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Holiday Elf Hat", + "GiftDropId": 11086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quarter Zip Sweater", + "GiftDropId": 11087, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11087, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,p5zYbKLGU0m0ZutOicfjsw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Quarter Zip Sweater", + "GiftDropId": 11088, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11088, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,pqtwCB_c20yRmOEs6jlH3g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Quarter Zip Sweater", + "GiftDropId": 11089, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11089, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,SSstW2ZPk0SB47qYlgbZzg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Quarter Zip Sweater", + "GiftDropId": 11090, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11090, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,wgIwYsXqiUekieE6pSt1Ng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beige Quarter Zip Sweater", + "GiftDropId": 11091, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11091, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6936d8e0-9d4a-4e22-99b6-04e5182c1109,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeletor Armor", + "GiftDropId": 11093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a2fa2f4-d335-4349-88a4-49af251454fa,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electric Guitar (Blue)", + "GiftDropId": 11095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a2fa2f4-d335-4349-88a4-49af251454fa,liZWUNZih0iakAa7UJkk9A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electric Guitar (Green)", + "GiftDropId": 11096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a2fa2f4-d335-4349-88a4-49af251454fa,zBfCq7T69kqZPTz3P8KKhg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electric Guitar (Red)", + "GiftDropId": 11097, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11097, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a51d8e1-8844-4999-ad8b-06f4d414571e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Eggshell Chick Costume", + "GiftDropId": 11098, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11098, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Gloves", + "GiftDropId": 11099, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11099, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,1sxxUbsQMki0sTwxEQIbtw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Gardener Gloves", + "GiftDropId": 11100, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11100, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,CEnWMDmcMEyjX5mRdhtXXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Gloves (Floral Orange)", + "GiftDropId": 11101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,ySbPHkP8WEee2V_P8lt_RA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Gardener Gloves", + "GiftDropId": 11102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Glove (White Glow)", + "GiftDropId": 11103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,CsPK8sqkHUSV1u9d4LijHw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Green)", + "GiftDropId": 11104, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11104, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,DJnKyNXtuEW1tbKBFscIng,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Glove (Pink Glow)", + "GiftDropId": 11105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,dPM-UHMtSEKC3rN8l4JsUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Orange)", + "GiftDropId": 11106, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11106, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,GYeYHzKcekODxx_zbtk8Qg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Pink)", + "GiftDropId": 11107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,jhPUIkf5bkinMSsqPTK3fg,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Glow Skeleton Glove", + "GiftDropId": 11108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,KWYMlbpZiEWRUb0F7CYDjA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Blue)", + "GiftDropId": 11109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,lwyGrpMk-kGZwIkioHr8Sg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Purple)", + "GiftDropId": 11110, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11110, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,s6DQxJ3gY0CG8L7JmcmRTQ,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Glove", + "GiftDropId": 11111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,ZY0rVNemjEuEMGMjuPNZyA,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Glove (Blue Glow)", + "GiftDropId": 11112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sarong Swimsuit", + "GiftDropId": 11113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,PNnfMibAUkqetPThlhtBgw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sarong Swimsuit (Cactus)", + "GiftDropId": 11114, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11114, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b337a35-95d9-4b3a-9891-d9fbb06262aa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Curly Mustache", + "GiftDropId": 11115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Scarf (Red)", + "GiftDropId": 11116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,5c4a2b35-0e1c-44de-8c3a-96d4a6458b1b,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Scarf (Purple)", + "GiftDropId": 11117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Scarf (White)", + "GiftDropId": 11118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,d6edbc00-3c1d-4f49-8412-3ef8c7c5f4c2,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Scarf (Blue)", + "GiftDropId": 11119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,WWVPdeMMi0S4_Dmn85yEqQ,FRUp0aYZTUmAXsybauOs7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Director Scarf", + "GiftDropId": 11120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Black)", + "GiftDropId": 11121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,64545dcc-a8eb-4c69-a539-78ee73a2d327,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Green)", + "GiftDropId": 11122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Purple)", + "GiftDropId": 11123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,909ed249-ce09-4304-8b02-56794fa7567d,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Red)", + "GiftDropId": 11124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,aBQ3R9boek-mYeSYSNvDbQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Blue)", + "GiftDropId": 11125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,e02838f8-4029-455a-b35c-dd40f972b05b,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (White)", + "GiftDropId": 11126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,Tbrc2MlSlE6mKua8qSoluQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Leather)", + "GiftDropId": 11127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d3be838-85cf-46db-b33d-0985aec9609f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Cowl", + "GiftDropId": 11128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d3be838-85cf-46db-b33d-0985aec9609f,Vn2gH3yjiE6bwBRgh5ntZQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Cowl (Red)", + "GiftDropId": 11129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Dress (Red)", + "GiftDropId": 11130, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11130, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,2c8924aa-68f8-4912-9759-18992f72f08a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Dress (Purple)", + "GiftDropId": 11131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,d66aa400-aa5a-4539-a25d-5f8ce94dc281,2c8924aa-68f8-4912-9759-18992f72f08a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Dress (Green)", + "GiftDropId": 11132, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11132, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,f750de46-3758-4f7d-9709-0a84b1027009,2c8924aa-68f8-4912-9759-18992f72f08a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Dress (Blue)", + "GiftDropId": 11133, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11133, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Gold Sequins)", + "GiftDropId": 11134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,Wm30oV5BtEuFQZFk3dPK_w,0R3Mh96tS0631EZYs03dmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Red Sequins)", + "GiftDropId": 11135, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11135, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6e48363d-cc62-40a8-87f9-a69fae90c002,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Box Braid Hair", + "GiftDropId": 11136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Red) ", + "GiftDropId": 11137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,tLbmGIoldE2CC5Qi1oyqyA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Winter)", + "GiftDropId": 11138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,v_5qFi-vAUSDd1fLNL7pvA,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Green)", + "GiftDropId": 11139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,y5O8zRJy4kuhnXzATSWKew,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Blue)", + "GiftDropId": 11140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chainsaw", + "GiftDropId": 11141, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11141, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,5p1Hwa8IE0KIuucb7hV16w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chainsaw (Gray)", + "GiftDropId": 11142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,jCfhcP5ftk6_ruDnFjIhJA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chainsaw (Purple)", + "GiftDropId": 11143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,qWS_znZq2km_MUGvv5QDHg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Chainsaw", + "GiftDropId": 11145, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11145, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,ZqWSyRnr9ECIvoU5yFyqXQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chainsaw (Pink)", + "GiftDropId": 11146, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11146, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Summit)", + "GiftDropId": 11147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,1_vRe9nJMEWcNX8kAwgh9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Ski Buddy Ear Muffs", + "GiftDropId": 11148, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11148, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,KwCEye0nsESFs-yj4h9sjQ,c_t9XDbn-Eqml1O-wC5zJQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Chill)", + "GiftDropId": 11149, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11149, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,m2znGrdH-EOhrbLbFsmyOg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Pink)", + "GiftDropId": 11150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,ojrXnWkUkEOGM3_oT6V29w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Ski Buddy Ear Muffs", + "GiftDropId": 11151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,sipxCGA1uUu72KV07vAWFA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Slate)", + "GiftDropId": 11152, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11152, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Summit)", + "GiftDropId": 11153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,0mwtvRpkmECaT5_4aqCttQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Ski Buddy Jacket", + "GiftDropId": 11154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,1BQdC-mTdUqfm4vUf0lx-g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Pink)", + "GiftDropId": 11155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,fXNkMWFMV0aXalK_y_8SHw,HQQWccdyakaEmntPhvC6CQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Chill)", + "GiftDropId": 11156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,S7C2A8nga0SlIeOEkeYaUw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Ski Buddy Jacket", + "GiftDropId": 11157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,vpxBkYv6LUSVV4NhYAS1Fw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Slate)", + "GiftDropId": 11158, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11158, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703e486a-1329-4e7b-8f3b-d9db9b9db0b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Gloves (Black)", + "GiftDropId": 11159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703e486a-1329-4e7b-8f3b-d9db9b9db0b5,8NY4MevLp0C2lP178fIZ9w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Gloves (Red)", + "GiftDropId": 11160, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11160, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sun Hat", + "GiftDropId": 11161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,dzH_40F-MUCy_7gATqL4PA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sun Hat (Blue)", + "GiftDropId": 11162, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11162, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,YS-fXtVLTkG-wl40HPBLOg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sun Hat (Black)", + "GiftDropId": 11163, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11163, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Blue)", + "GiftDropId": 11164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Orange)", + "GiftDropId": 11165, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11165, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,83522c12-9549-4d74-8c87-bae210bcd2bf,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Black)", + "GiftDropId": 11166, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11166, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,XNq4Cns4lEGydtktdsXlmQ,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Navy)", + "GiftDropId": 11167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Helmet (Purple)", + "GiftDropId": 11168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,e3454bc7-c88d-4958-8b81-db3fe5472a1e,7e688b30-ed13-4790-9ad8-c49885d1b7e8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Helmet (Pink)", + "GiftDropId": 11169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71921831-ba6f-408b-a00e-2fd97663636f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Tape (White)", + "GiftDropId": 11170, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11170, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71921831-ba6f-408b-a00e-2fd97663636f,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Tape (Black)", + "GiftDropId": 11171, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11171, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71921831-ba6f-408b-a00e-2fd97663636f,7d8e55fe-3c34-4b4b-9753-0021f6cc6454,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Tape (Cream)", + "GiftDropId": 11172, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11172, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71afc215-3d18-4f36-a114-f11c453e46d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar (Wood)", + "GiftDropId": 11173, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11173, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71afc215-3d18-4f36-a114-f11c453e46d2,BPp9SkUpsE2PZlStZrIDIg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar (Black)", + "GiftDropId": 11174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71afc215-3d18-4f36-a114-f11c453e46d2,O38XfZ3gh0-ofqu36y3mAg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar (Cherry)", + "GiftDropId": 11175, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11175, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (White)", + "GiftDropId": 11176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,ss931x_Hy0-y1au-fT3zTQ,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (Brown)", + "GiftDropId": 11178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,UQfLaKHzo0WqlRul_O61xQ,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (Forbidden Purple)", + "GiftDropId": 11179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,wZC46s7Id0CUICN_XOK-Rg,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (Pink)", + "GiftDropId": 11180, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11180, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,yrR3ogjJ50q6ypAnCF-ctQ,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (Grey)", + "GiftDropId": 11181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "730453b8-a352-4e6b-9573-54294690c2ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Staff", + "GiftDropId": 11182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "730453b8-a352-4e6b-9573-54294690c2ad,4yMvQ3-hnU2zZQf_XT9r-A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Staff (Red)", + "GiftDropId": 11183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Grey)", + "GiftDropId": 11184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,22dc463a-a89b-46ad-9a0d-557c742b4a80,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (White)", + "GiftDropId": 11185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,59866578-d4e0-417b-9483-233ab108b1ac,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Cherry)", + "GiftDropId": 11186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Black)", + "GiftDropId": 11187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ed134bee-d199-43eb-98bd-206571603f40,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Blue)", + "GiftDropId": 11188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ITH2OpzjP022vZ5JgxV_iQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Yellow)", + "GiftDropId": 11189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,PMa9370LPEig_7pKwCceEQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Green)", + "GiftDropId": 11190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "73a119ab-d2c8-4da9-98b2-29edbb38e2c2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Red Sequins)", + "GiftDropId": 11191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "73c0e2ba-cba1-482a-89d5-1508997aceeb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Silver Sequins)", + "GiftDropId": 11192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Bracer", + "GiftDropId": 11193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,MzNNQ6T1HEqbqcLXZIulLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Bracer (Jade)", + "GiftDropId": 11194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Gloves (Tan)", + "GiftDropId": 11195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,fa9a3d8e-16c9-4a7e-9166-3226e0d13c39,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Gloves (Green)", + "GiftDropId": 11196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Arizona Cardinals Shirt", + "GiftDropId": 11197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,_BV42pO3n0e0V-eOf9CyGg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Los Angeles Rams Shirt", + "GiftDropId": 11198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,5mFA4uHLmku8oCc1rDJmXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Denver Broncos Shirt", + "GiftDropId": 11199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,84OVMNAiv0mQwX2bpkw2yg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Chicago Bears Shirt", + "GiftDropId": 11200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,cLswsDJEmkCqYDGI8DJmPQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Cleveland Browns Shirt", + "GiftDropId": 11201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,coRfJXTxhUKsFs1tzSBgUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New York Jets Shirt", + "GiftDropId": 11202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ebjoqQ_pnU2qdFVR1yDIzA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New England Patriots Shirt", + "GiftDropId": 11203, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11203, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,EziQI39wZUWqIy8zs5I7LA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Seattle Seahawks Shirt", + "GiftDropId": 11204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,fdmR0dt0hEakaNp8mpjGmg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Dallas Cowboys Shirt", + "GiftDropId": 11205, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11205, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Fr--3nBIUUuD6EYmj1iklA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New Orleans Saints Shirt", + "GiftDropId": 11206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,g6PcjAOH0UinJtrGmxVuyw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Miami Dolphins Shirt", + "GiftDropId": 11207, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11207, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,G9cFrBRvw0S-nDp-Fn494g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Atlanta Falcons Shirt", + "GiftDropId": 11208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,hrTGnJLb4U21P9PCi7u3xw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New York Giants Shirt", + "GiftDropId": 11209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,i1e3GavcdEu7EJFzwpBXvg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Minnesota Vikings Shirt", + "GiftDropId": 11210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ishXZTP3bkeVNk68PBZAiA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Cincinnati Bengals Shirt", + "GiftDropId": 11211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,KcsFLjkhCUmg8HbamtChbg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Baltimore Ravens Shirt", + "GiftDropId": 11212, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11212, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,kdExSysXREOAYqobK_Wzpw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Kansas City Chiefs Shirt", + "GiftDropId": 11213, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11213, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,nHa0WjWfl0-g-sknorb10g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Indianapolis Colts Shirt", + "GiftDropId": 11214, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11214, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,pcEwV_ZPxkSKP39UgPh6fw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Houston Texans Shirt", + "GiftDropId": 11215, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11215, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,PWMkuXHWFEKGKfSiT8rWNg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Tampa Bay Buccaneers Shirt", + "GiftDropId": 11216, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11216, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Rlxn533MdUqMefvUSoZrrQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Los Angeles Chargers Shirt", + "GiftDropId": 11217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ry0fWzcysk2fsr-zIvzjUg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Detroit Lions Shirt", + "GiftDropId": 11218, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11218, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,S9YQnGF2WkaFSG07d-5TUw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Green Bay Packers Shirt", + "GiftDropId": 11219, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11219, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,VExSaZXZ9kan-0qjP6YPzQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Pittsburgh Steelers Shirt", + "GiftDropId": 11220, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11220, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,vtQ3bx6n7kSFdES121M5IQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Washington Commanders Shirt", + "GiftDropId": 11221, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11221, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,w_8Bff5J_Uej5iCAz2WTBw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Jacksonville Jaguars Shirt", + "GiftDropId": 11222, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11222, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,xdO8lwFuG0e1v2FRmza4dQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Tennessee Titans Shirt", + "GiftDropId": 11223, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11223, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,XlkkIjP4EEKq0ObjXYGtBA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Las Vegas Raiders Shirt", + "GiftDropId": 11224, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11224, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,xVPRKfkYG0-u4MFhJYGe9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Carolina Panthers Shirt", + "GiftDropId": 11225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Y75a0D5Wj0qmpfxG18LvWQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Philadelphia Eagles Shirt", + "GiftDropId": 11226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ye7GYcd6PkObqAsla6BJaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Buffalo Bills Shirt", + "GiftDropId": 11227, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11227, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Yec2FLXhpEmrocbVUOkhhQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL San Francisco 49ers Shirt", + "GiftDropId": 11228, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11228, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Purple)", + "GiftDropId": 11229, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11229, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,657f28d5-672a-4f27-86c6-3cb00f25bb84,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Red)", + "GiftDropId": 11230, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11230, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,8cab8cc6-9a2d-434c-8b72-e66edbdd223c,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Black)", + "GiftDropId": 11231, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11231, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,b42d903b-b393-4f49-af5e-38d0fb6c42b0,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Blue)", + "GiftDropId": 11232, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11232, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,w_aK2K9bHEeU6oSQ7BK0qg,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Green)", + "GiftDropId": 11233, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11233, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745fd5ef-705b-40f0-bfd7-dbf4af5a82e8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mighty Princess Armor", + "GiftDropId": 11234, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11234, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wedding Dress", + "GiftDropId": 11236, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11236, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,nuR8wvvCXU-EMXjBZuTXJA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sugarplum Dress", + "GiftDropId": 11237, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11237, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,SExtD3FBk0GwseMZDdGJlw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sugarplum Dress (Green)", + "GiftDropId": 11238, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11238, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,TqhSo1hbPE6wdB_6lvLhFw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sugar Plum Dress (Purple)", + "GiftDropId": 11239, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11239, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Shirt (White)", + "GiftDropId": 11240, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11240, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,304e5cf1-5c94-481f-8e49-e6a943e6b300,90e0da8b-1941-4ca8-b7e5-b4e31921873c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Shirt (Pink)", + "GiftDropId": 11241, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11241, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,NpMkoIK62k63QoLVEXId6g,iT7UGMahoEu7BZZqeKXKww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Shirt (Green)", + "GiftDropId": 11242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,PLRhiOhhb0KhatFH7f3pwA,iT7UGMahoEu7BZZqeKXKww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Shirt (Orange)", + "GiftDropId": 11243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,RwgnKTfMEkWrAp_OMGy__Q,iT7UGMahoEu7BZZqeKXKww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Shirt (Blue)", + "GiftDropId": 11244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Red)", + "GiftDropId": 11245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,GVoh3mdWf0WNA9lfqL1GEw,w9qG5gHlAUqh8f9ZgnezsQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Blue)", + "GiftDropId": 11246, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11246, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,kkvNbVRjcEKtChpy3W1bqQ,nbhzQy_Hdkeohh4S1IezwA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Black)", + "GiftDropId": 11247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,x4PPvuhg6USE6GSFgZZnCg,w9qG5gHlAUqh8f9ZgnezsQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Green)", + "GiftDropId": 11248, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11248, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7524b3f3-130b-41b1-83f6-9c241bd92bb4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yeti Shirt", + "GiftDropId": 11249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7553d851-1986-4325-870d-e425dfb7d007,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Farmer Beard", + "GiftDropId": 11250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back", + "GiftDropId": 11251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,2dGY5MHfxEunzr7jtSFRVw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back (Yellow)", + "GiftDropId": 11252, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11252, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,DSZKCNhXAEiAxMM1Gqfhsw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back (Orange)", + "GiftDropId": 11253, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11253, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,E6md4xTNYkS9geB8zkNRmA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Snowboard on Back", + "GiftDropId": 11254, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11254, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,K1-5YGg2rEiJFRWUKEfEMA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back (Pink)", + "GiftDropId": 11255, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11255, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,PI3_sfTcNEW5TcAmHbsUOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back (Blue)", + "GiftDropId": 11256, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11256, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Creamsicle)", + "GiftDropId": 11257, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11257, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,1w_u4d4AjESxw5dxRkKHrw,CylZksC7KUGXF2VeJhlLSw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Cheeseburger)", + "GiftDropId": 11258, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11258, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,1Z24Obg1MEm6dC_blOy4IA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Premium)", + "GiftDropId": 11259, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11259, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,6wCu0bPODE6tayAY_aicRQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (SummerCamp Contest)", + "GiftDropId": 11260, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11260, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,7BMBl3iA6USKijNCKfCXqA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Neapolitan)", + "GiftDropId": 11261, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11261, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,akqD9mYQQ0qks9SJe80MbA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Floatie (Invasion)", + "GiftDropId": 11262, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11262, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,LRv1X0ZrjkqO7azGpZ7uMg,sx10-Hsfl0OS62pIFvHH8A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Donut)", + "GiftDropId": 11263, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11263, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,NMmOn0zQZ0mJLxCMnsbIVw,v1ZOE9G9gEWAqNJX1A9f2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Watermelon)", + "GiftDropId": 11264, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11264, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,RCit-BlLyE6cvzpbfCVShA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Floatie (Invasion 2)*", + "GiftDropId": 11265, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11265, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Black)", + "GiftDropId": 11266, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11266, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,1421caa9-9a0d-42c2-b847-1500ba2e483a,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Brown)", + "GiftDropId": 11267, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11267, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,390a476a-5545-48eb-955c-1bf1a16012bf,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Grey)", + "GiftDropId": 11268, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11268, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,40283127-2ffc-4989-82f6-29c3381bf9e2,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (White)", + "GiftDropId": 11269, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11269, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,46970903-9799-4d25-b90a-7162c1f5dbef,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Creators Contest 2)", + "GiftDropId": 11270, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11270, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,8XajS2adOEOqzqnLy6-zcQ,P12CUkIg8EuFihGQsvPlxg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Hat", + "GiftDropId": 11271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "A hat given to the ethical hackers of Rec Room.", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,PZx7Iae0pkiDaxT9t3-vgg,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Purple)", + "GiftDropId": 11272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "764b4c4e-1009-4772-b01f-7b326dd77e8a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Vest", + "GiftDropId": 11273, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11273, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "764b4c4e-1009-4772-b01f-7b326dd77e8a,93vga8NJQEe5nWdqrroAaw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Vest (Shamrock)", + "GiftDropId": 11274, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11274, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7652db86-bc67-4665-8937-f5199d27b5c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mighty Princess Crown", + "GiftDropId": 11275, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11275, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "767684e7-0eec-4f6e-ad58-3d5ae715206e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Sunglasses", + "GiftDropId": 11276, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11276, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76a73866-5b60-424d-b751-a105e030f46e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Hair ", + "GiftDropId": 11277, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11277, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76f8f9b8-0793-4d98-962c-9e6a71979540,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Belt Sword (Jade)", + "GiftDropId": 11278, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11278, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76f8f9b8-0793-4d98-962c-9e6a71979540,XIluUn9vQEabkEpqyYBG0g,9sSCSLRkYUCs4CCHK8FfAA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Belt Sword (Red, Gold)", + "GiftDropId": 11279, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11279, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask", + "GiftDropId": 11280, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11280, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,HWAWBHI3zkGsh06he9CoPg,UAeSz-XeZUaZsk9FNlPX5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask (Raven)", + "GiftDropId": 11281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,I_3bHRSG_EmC6novYyy2dA,Cq8BOWcHb0GTDLvXl1iIcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask (Red)", + "GiftDropId": 11282, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11282, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (Brown)", + "GiftDropId": 11283, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11283, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (Black)", + "GiftDropId": 11284, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11284, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,643b5f2d-0666-4869-b699-03742de34d16,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (White)", + "GiftDropId": 11285, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11285, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77d3c585-4928-4471-a425-89036efe7299,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spiky Hair", + "GiftDropId": 11286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "79b90274-6eec-4664-acfb-4a123334661e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pig Tails Hair", + "GiftDropId": 11287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Blue)", + "GiftDropId": 11289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Yellow)", + "GiftDropId": 11290, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11290, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,83522c12-9549-4d74-8c87-bae210bcd2bf,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Black)", + "GiftDropId": 11291, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11291, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,qspNifi92keI-XssPB5qDA,RVraJOPsOUqZjd8bEiPduQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Premium)", + "GiftDropId": 11292, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11292, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,XNq4Cns4lEGydtktdsXlmQ,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Navy)", + "GiftDropId": 11293, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11293, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Brown)", + "GiftDropId": 11294, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11294, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,a8de80d3-286a-4fdc-bed2-75d52f8c0964,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Black)", + "GiftDropId": 11295, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11295, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,c6cf096c-f0cb-4500-80a0-bc2916b5a426,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Tan)", + "GiftDropId": 11296, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11296, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,FjnZ-D1hcESLOWL4Ukv7kw,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Red)", + "GiftDropId": 11297, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11297, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a97838f-24ac-41a0-8390-0c9308644eb1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Power Sword", + "GiftDropId": 11298, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11298, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a98503f-0460-4d25-a0d5-72a32db8f4c2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Turtle)", + "GiftDropId": 11299, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11299, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a98503f-0460-4d25-a0d5-72a32db8f4c2,A8ht7G1iqEeLvP0SW6SwyQ,QppxPdf550-jT7dK7XrTzw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Penguin)", + "GiftDropId": 11300, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11300, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Primrose)", + "GiftDropId": 11301, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11301, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,_OM7UNZENEejgO5h7H1ztg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Dahlia)", + "GiftDropId": 11302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,9Z95fSKS00GscDxK8-ARlA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blueberry Gamer Dress", + "GiftDropId": 11303, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11303, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,D9U3j_XgSUesfHtSNoAdLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Cow Print)", + "GiftDropId": 11304, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11304, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,I8SCbauJX0OLAKWOjy78yQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Strawberry Gamer Dress", + "GiftDropId": 11305, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11305, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,IzdUC8x0F02i3BhPfEUOYw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Poppy)", + "GiftDropId": 11306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11306, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,nPUQvBsxu0mzhQg9YnWEgw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Paradise)", + "GiftDropId": 11307, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11307, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,P6w6X7-Dak2G6O8HDRwlVg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gamer Dress (Lime)", + "GiftDropId": 11308, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11308, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,RKftA1Fw30-hriuZNMGsoQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gamer Dress (Grape)", + "GiftDropId": 11309, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11309, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,SiraUm3ZaUOCeXCekunJuA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pineapple Gamer Dress", + "GiftDropId": 11310, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11310, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wLpOk1g2rUyDeCKb5uOeSg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gamer Dress (Raspberry)", + "GiftDropId": 11311, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11311, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wyKAZSZwT0u9cuSaQ_-IHg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Begonia)", + "GiftDropId": 11312, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11312, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,ZXeI9jooq0-dQaX-FlkNuQ,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Lily)", + "GiftDropId": 11313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Suit (Blue)", + "GiftDropId": 11314, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11314, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,jGNpSO25HkO7KbR3v05nkA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Suit (Astronaut)", + "GiftDropId": 11315, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11315, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,lhqUg1VMNkC8nrsGZF4edQ,uFERkSfSl0i9BPFBVOICeg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Suit (Red)", + "GiftDropId": 11316, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11316, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,yO5pgI2quE2i3tNBlvJPGA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Suit (Sponsored)", + "GiftDropId": 11317, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11317, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b568bd0-ce59-456f-af69-537364a52f69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Suit (Black)", + "GiftDropId": 11318, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11318, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b568bd0-ce59-456f-af69-537364a52f69,_fabGqrxrkW2mfx0bejHsA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Suit (Red)", + "GiftDropId": 11319, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11319, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "T-Shirt", + "GiftDropId": 11320, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11320, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Black)", + "GiftDropId": 11321, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11321, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Black)", + "GiftDropId": 11322, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11322, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,48abd952-214f-48b2-a8f1-1146f6f69aa2,b78008e8-abbd-4ece-be34-9a911f721fcc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Zebra)", + "GiftDropId": 11323, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11323, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Orange)", + "GiftDropId": 11324, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11324, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Orange)", + "GiftDropId": 11325, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11325, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,5c4a2b35-0e1c-44de-8c3a-96d4a6458b1b,9c03f381-7357-4d0f-8cda-8737d4c43d25,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Rainbow)", + "GiftDropId": 11326, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11326, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,6d703981-2734-4c45-8983-cdd5f328902f,a0271cd0-e172-4d3f-aa2f-9806f21a82d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Camo)", + "GiftDropId": 11327, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11327, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,724c79a3-822c-422f-9462-a5374ee0211c,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (White)", + "GiftDropId": 11328, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11328, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Red)", + "GiftDropId": 11329, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11329, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Red)", + "GiftDropId": 11330, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11330, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,90bc2d31-1715-4d1a-813a-7c57e66cb017,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Teal)", + "GiftDropId": 11331, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11331, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Dots)", + "GiftDropId": 11332, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11332, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,c72911d0-453f-4732-b1bd-dad520220a06,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Purple)", + "GiftDropId": 11333, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11333, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Pink)", + "GiftDropId": 11334, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11334, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,d2b40639-5d34-45b6-904e-6dd29030ff44,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Yellow)", + "GiftDropId": 11335, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11335, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Blue)", + "GiftDropId": 11336, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11336, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Blue)", + "GiftDropId": 11337, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11337, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Green)", + "GiftDropId": 11338, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11338, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pearl Necklace (Freshwater)", + "GiftDropId": 11339, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11339, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,sqPMH0LhLkeG-4XkxpU-sw,URWHffwjGUKgXeV01upePA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pearl Necklace (Saltwater)", + "GiftDropId": 11340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c1552a6-bc36-46e6-884c-1de6b8111a92,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raccoon Cap (Brown)", + "GiftDropId": 11341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c1552a6-bc36-46e6-884c-1de6b8111a92,926ae943-76cb-46dd-9c66-a6ee44ea9194,f1cd10fb-3d0b-436f-a173-65bc0d88d8bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raccoon Cap (Grey)", + "GiftDropId": 11342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7d6cf363-76ba-45c8-91f1-cf4434c31b36,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Monocle", + "GiftDropId": 11343, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11343, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mirrored Glasses (Gold)", + "GiftDropId": 11344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,f841cdfa-45ba-4f09-a117-503eef34cb4b,9c55b609-b7dc-4070-a3ad-6351a0054a06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mirrored Glasses (Silver)", + "GiftDropId": 11345, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11345, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7dc6c916-b887-4929-93b5-dcea3022e6a9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Wonderland Contest)", + "GiftDropId": 11346, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11346, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7dd6f7b0-7ba0-429f-a04f-e32d3a79ee61,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Short Wavy Hair", + "GiftDropId": 11347, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11347, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Felted Shawl", + "GiftDropId": 11348, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11348, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,GCethPzUyUKYxWdfLykbSg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Felted Shawl (Pineapple)", + "GiftDropId": 11349, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11349, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Black)", + "GiftDropId": 11350, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11350, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,1LonkCbt4kykeAScYKpwyg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Navy)", + "GiftDropId": 11351, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11351, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,5mcp7-2ZEE6n3-zN3_CoWw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Purple)", + "GiftDropId": 11352, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11352, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,9b9t8_aKH0-gQXMhZycaOA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Orange)", + "GiftDropId": 11353, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11353, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G4HIPUjekUigiU0-Kr9mdA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Yellow)", + "GiftDropId": 11354, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11354, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G-VKgepBkkeATcwCaS6Rwg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Grey)", + "GiftDropId": 11355, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11355, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,IXWd396grEOWHt32L7fCpQ,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Blue)", + "GiftDropId": 11356, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11356, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Jt0QqNrAp0qzUR_RQoivVg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Green)", + "GiftDropId": 11357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,lBePHNL9LkyaAjEFyFE8Sw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Red)", + "GiftDropId": 11358, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11358, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,R0UCacpdhUS906Xf7l142A,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Teal)", + "GiftDropId": 11359, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11359, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Zz4XatKfUEapReRAQHxKKA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (White)", + "GiftDropId": 11360, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11360, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e6e24b6-6f9c-4315-b457-73eba52d824c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Glove", + "GiftDropId": 11361, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11361, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e6e24b6-6f9c-4315-b457-73eba52d824c,Mnpd7r3eu0CNmZYSPTMASg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Gloves (Ghost)", + "GiftDropId": 11362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alley Cat Ears", + "GiftDropId": 11363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,9yNuA59JO0avaKVA6YxQyA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alley Cat Ears (White)", + "GiftDropId": 11364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,dr6MrV8O30G0i-c7peOoKQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alley Cat Ears (Orange)", + "GiftDropId": 11365, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11365, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,UcK6aipko0iE4THJUO1TvA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alley Cat Ears (Grey)", + "GiftDropId": 11366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ee02f33-1135-4adf-a626-44a1b6d1b0cb,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeletor Mask", + "GiftDropId": 11367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7LSm-xCYakmgcAr--Fn-JA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Dress (Grim)", + "GiftDropId": 11368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7LSm-xCYakmgcAr--Fn-JA,rZ45-lecBESqHaLX0c7NAw,iDxHI0T4Gkifs3_GY5gdjQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Dress (Emerald)", + "GiftDropId": 11369, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11369, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7LSm-xCYakmgcAr--Fn-JA,uTHwo8qd6Ei3Oy4gz_j9Ow,AK4CoAB2IUGkwqECNaO75g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Dress (Creators Contest)", + "GiftDropId": 11370, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11370, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7VQvz9sbzUWvGalxd9rISg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bride of Frank Gown", + "GiftDropId": 11371, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11371, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7VQvz9sbzUWvGalxd9rISg,YTR8qybyVkOhNh4iqtU_UQ,H8LXGRJj8UOuH5dil8L9qw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Crimson Bride Gown", + "GiftDropId": 11372, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11372, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7VQvz9sbzUWvGalxd9rISg,zNBLaOhCAEKWvgLK4P_X7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Dress", + "GiftDropId": 11373, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11373, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8263a9ca-8c57-4e81-b3e3-24f2ca19a70a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Construction Helmet (Yellow)", + "GiftDropId": 11374, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11374, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "833e8ab3-9b54-4e15-8f4d-ee1bac5823c9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Werewolf Head", + "GiftDropId": 11376, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11376, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Blue)", + "GiftDropId": 11377, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11377, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (White)", + "GiftDropId": 11379, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11379, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Red)", + "GiftDropId": 11380, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11380, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e4IDo-fuH0C9YByzcX5k-A,qCIoeLQw-Uq-SKIetIgIpA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Bow Tie (Red)", + "GiftDropId": 11381, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11381, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e69372eb-2fd8-4e17-a448-ee0be61a2c7a,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Black)", + "GiftDropId": 11382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,W4a144so90eRzCojUnDowA,rcuK1wZcXkCe0_LGX7E-Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Candy Cane)", + "GiftDropId": 11383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,wF-WrDaY_kmm1AzA20RsZw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Shamrock)", + "GiftDropId": 11384, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11384, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Orange)", + "GiftDropId": 11385, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11385, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,83522c12-9549-4d74-8c87-bae210bcd2bf,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Black)", + "GiftDropId": 11386, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11386, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,c5884778-a87f-4612-9717-86fbb65d440f,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Blue)", + "GiftDropId": 11387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,XNq4Cns4lEGydtktdsXlmQ,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Navy)", + "GiftDropId": 11388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84574356-98ec-415f-8668-82cb52016bd3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Zebra)", + "GiftDropId": 11389, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11389, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84574356-98ec-415f-8668-82cb52016bd3,ljbO0JAKVky8M97MsjKnPg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Armored Horse)", + "GiftDropId": 11390, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11390, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84574356-98ec-415f-8668-82cb52016bd3,p379ObEL9Eea0DX9Ld4qnw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Horse Floatie", + "GiftDropId": 11391, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11391, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84600de6-93fc-4a89-961e-1f18f4b80643,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Costume", + "GiftDropId": 11392, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11392, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84600de6-93fc-4a89-961e-1f18f4b80643,Be2v1bpBSEu4lwKJePscPA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Costume (Ghost)", + "GiftDropId": 11393, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11393, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84805fb5-91c4-4619-92d0-d7c19ffa3e5b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Suit", + "GiftDropId": 11394, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11394, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84805fb5-91c4-4619-92d0-d7c19ffa3e5b,zvs7t0P2Q02wIELJzMa2TQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Vest (Blue)", + "GiftDropId": 11396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84992fc3-4801-492b-8a6c-ffa09ae5b593,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disco Ball Headphones", + "GiftDropId": 11397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stoll Dress (Pink)", + "GiftDropId": 11398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,64850553-cdfe-455a-ac00-dafbe63d613e,91a451c1-b285-4c48-b14d-59ded8cc006f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stoll Dress (Orange)", + "GiftDropId": 11399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,761a3193-60f0-4190-80c7-285b8192e794,91a451c1-b285-4c48-b14d-59ded8cc006f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stoll Dress (Blue)", + "GiftDropId": 11400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,a819f49b-6c7a-49d3-9e6a-d9d79ef5019f,91a451c1-b285-4c48-b14d-59ded8cc006f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stoll Dress (Green)", + "GiftDropId": 11401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Wings ", + "GiftDropId": 11402, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11402, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,cbk6h_-1Y0exRpGyrQMDMA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Wings (Red)", + "GiftDropId": 11403, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11403, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,E_pm-PPj_U-nsfMti-AlCA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Wings (Green)", + "GiftDropId": 11404, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11404, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Summer)", + "GiftDropId": 11405, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11405, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,_SPKrYIcnUWhTiSrTFLwoQ,w-vooMawWU6_4spdgBYufA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Winter)", + "GiftDropId": 11406, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11406, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,AHL9ydUbqEqMw1tluIvyQA,w-vooMawWU6_4spdgBYufA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Fall)", + "GiftDropId": 11407, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11407, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,BYbKbXAgUk6vE7H7w4jSMA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Cherry Blossom)", + "GiftDropId": 11408, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11408, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,n2pZHS8A3kSgyFUCI_-8TA,w-vooMawWU6_4spdgBYufA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Spring)", + "GiftDropId": 11409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "85e03c16-4288-45f4-a579-c911437d27d4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoodie Jacket", + "GiftDropId": 11410, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11410, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8691fa78-3069-41e6-8431-01c294e8d56b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Orion)", + "GiftDropId": 11411, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Unlocked by visiting ^WelcomeAndroid", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11411, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86af3a97-18d8-4dda-a2f2-cfd3b4224254,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Green Sequins)", + "GiftDropId": 11412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86dd9ff9-643f-4f11-8243-93ad948db4cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Happy New Year Sash", + "GiftDropId": 11413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86e0a4cf-b112-40d2-94b9-7ef35abe5a61,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Outlaw Cape", + "GiftDropId": 11414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "87792b6e-1468-45e1-b28c-83f27ada7299,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Fuchsia)", + "GiftDropId": 11415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "880a3cc0-7407-4b61-b759-f9dd890fe9e5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bob Hair", + "GiftDropId": 11417, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11417, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Gloves (White)", + "GiftDropId": 11418, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11418, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,y_gTbnuYS0GKJmnCs2retw,hjk9OO8CW0KNGR7A6_p84A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Gloves (Orange)", + "GiftDropId": 11419, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11419, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8896a6f6-0f54-4f0b-aebe-7b121f3efd94,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Cape (Red)", + "GiftDropId": 11420, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11420, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8896a6f6-0f54-4f0b-aebe-7b121f3efd94,46WaeyRZnUCuLkEpxECRMg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Cape (Black)", + "GiftDropId": 11421, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11421, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88ae6d12-6d39-4770-ac2a-f8c4602a10a5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Soldier Helmet (Blue)", + "GiftDropId": 11422, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11422, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88b6ddeb-a455-460d-91d9-a4569ef6903c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Earrings ", + "GiftDropId": 11423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Coat (Black)", + "GiftDropId": 11424, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11424, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,4828b50c-95b6-466a-bb25-514891d78202,d344b8cc-85a8-4ace-9f92-38c84f396e99,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Coat (Grey)", + "GiftDropId": 11425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,55901f12-d5b5-4fa8-b4c8-e479689ee39d,d344b8cc-85a8-4ace-9f92-38c84f396e99,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Coat (Blue)", + "GiftDropId": 11426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,d6823e01-69f0-4f85-b94a-74894356a2cf,d344b8cc-85a8-4ace-9f92-38c84f396e99,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Coat (Maroon)", + "GiftDropId": 11427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Squid Hat", + "GiftDropId": 11428, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11428, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,t8kKXvBU-kSM_MHaqZYpkQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Squid Hat (Blue)", + "GiftDropId": 11429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gentlelady Hat", + "GiftDropId": 11430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,9liduuR6IE-6C4YN_FKcZg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Green Gentlelady Hat", + "GiftDropId": 11431, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11431, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,clKD22mme0y8apzUhHmI_A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Purple Gentlelady Hat", + "GiftDropId": 11432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,tp0jNW7f0Uubr9nTMWuhXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gentlelady Hat (Pastel Pink)", + "GiftDropId": 11433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8aa79563-ace1-4ba7-ad0c-f3210a78142f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Shirt (V-Neck, White)", + "GiftDropId": 11434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8aa79563-ace1-4ba7-ad0c-f3210a78142f,95e4cc30-cb68-473d-a395-feadf5b51512,05f0ee6e-c824-470e-9178-5ed576c6fe0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room T-Shirt (V-Neck, Orange)", + "GiftDropId": 11435, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11435, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Blue)", + "GiftDropId": 11436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Green)", + "GiftDropId": 11437, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11437, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,eOJkmpSL4EypK-AQz7j8gQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Black)\t", + "GiftDropId": 11438, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11438, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,hRxyLsKfsESFAsXAyZQjoA,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Blue)", + "GiftDropId": 11439, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11439, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,KaZqNx5VKkarRrOJcTuD9A,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Red)", + "GiftDropId": 11440, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11440, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,kgCKjtSjFEmFq9ez2llxKQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Green)", + "GiftDropId": 11441, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11441, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,o2WfRyjJy0CKoUg8YIxNjQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Tan)", + "GiftDropId": 11442, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11442, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Black)", + "GiftDropId": 11443, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11443, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,sscD2O3LEUOAKkqjGpGe8g,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Orange)", + "GiftDropId": 11444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (White)", + "GiftDropId": 11445, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11445, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b9f1413-e786-4a30-946c-9292f207875a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pulp Hair", + "GiftDropId": 11446, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11446, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c35c804-e8d5-49d2-8d5a-ea19fb70bfa6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pencil Bun Hair", + "GiftDropId": 11447, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11447, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Visor", + "GiftDropId": 11448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ear Headphones (Forbidden Purple)", + "GiftDropId": 11449, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "This item may come in handy at concerts, afterparties, or in dark, forbidden lairs...", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11449, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,7Ww7mumWXkiyj0R3u_-hrA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ear Headphones (Glitch Blue)", + "GiftDropId": 11450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,etbo7k9dq0OyjIrNS4sdkQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ear Headphones (Neon Pink)", + "GiftDropId": 11452, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11452, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8cc01536-2f43-4de4-ac63-7304d8beb73c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Settler Hat", + "GiftDropId": 11453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "Drops occasionally after Rec Rally games.", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d10cc78-6b00-45f3-affb-205e9cc5b03f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beard (Close)", + "GiftDropId": 11454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Hat (Black)", + "GiftDropId": 11455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,53dd9e44-7096-438e-a7c3-11d7c307426f,a4903da3-249d-4f0a-a746-b547fda371ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Hat (Brown)", + "GiftDropId": 11456, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,c3c9f89c-580c-43c4-b38b-07394044e0e1,a4903da3-249d-4f0a-a746-b547fda371ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Hat (Red)", + "GiftDropId": 11457, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d3d4ba2-5d98-4034-8dc1-cd00263e2b71,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Bag", + "GiftDropId": 11458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d3d4ba2-5d98-4034-8dc1-cd00263e2b71,EM1x0p66L0Gf6BNBP8-1kA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Shoulder Bag", + "GiftDropId": 11459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Black)", + "GiftDropId": 11460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Blue)", + "GiftDropId": 11461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,d5efaf80-7f34-4c9a-bc3a-b80b1ac70ace,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Red)", + "GiftDropId": 11462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,qdA34j6p_UqphqChTCHEYQ,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Green)", + "GiftDropId": 11463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Triton)", + "GiftDropId": 11464, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11464, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,CahBzgN3D0y46AQsvGC14A,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Leviathan)", + "GiftDropId": 11465, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11465, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,Su7kiW24d0KapNns96JoFQ,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Kraken)", + "GiftDropId": 11466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Shindig)", + "GiftDropId": 11467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,69vv21jfTUu1E_LjK5bytg,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Jubilee)", + "GiftDropId": 11468, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11468, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,AfqXBWLBQEiiag4cEtoEiA,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Hoopla)", + "GiftDropId": 11469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,RROvzwtshUGyRudVIBn8bw,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Celebration)", + "GiftDropId": 11470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8f137b1f-4125-4657-85c4-bcdb74d3b0c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barrel Shirt", + "GiftDropId": 11471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Black)", + "GiftDropId": 11472, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11472, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,5Dbc8qCaY0OXEuwykM4naA,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Blue)", + "GiftDropId": 11473, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11473, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,HBt3ToOkUUereoPKwyvzuw,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Green)", + "GiftDropId": 11474, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11474, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fec17b6-f5fd-40b5-ac9e-a52faf5621c4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Headphones", + "GiftDropId": 11475, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11475, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fec17b6-f5fd-40b5-ac9e-a52faf5621c4,G_fqC7KPaUWFM4Dk3stJYw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "8 Ball Headphones", + "GiftDropId": 11476, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11476, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Crown", + "GiftDropId": 11477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,z1djgGqy502ha9X_uB3enA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Crown (Jade)", + "GiftDropId": 11478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Pride)", + "GiftDropId": 11479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,6secgNPvmUyFnI3NC5dIYw,5V_1JEDrRUa1UPKhtrSB2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Victory)", + "GiftDropId": 11480, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11480, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,bc-aVFn__E61pyA4SvUoGA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Suit Shirt", + "GiftDropId": 11481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,X5SuBHIGBE6wy8N8KDop8Q,5V_1JEDrRUa1UPKhtrSB2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Rally)", + "GiftDropId": 11482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9117bd15-674e-4f22-9ff8-e7365fa43907,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar", + "GiftDropId": 11483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9117bd15-674e-4f22-9ff8-e7365fa43907,UdQxfRULDEG6BvJV7HWO_g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar (Dark Oak)", + "GiftDropId": 11484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9168b3f9-c7e5-40b6-bb2c-9e708596e675,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Head", + "GiftDropId": 11485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9176086b-a0b4-4298-a7fb-eb91ea421e89,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Kraken Backpack", + "GiftDropId": 11486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Survive any game with the Squid King watching your back. Go Krakens!", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "92302d9d-c527-418c-ac5d-1fa869727505,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Part Hair", + "GiftDropId": 11487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9231a9c6-7638-4fe9-bd2f-eac6c943009b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Championship Wrestling Belt", + "GiftDropId": 11488, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11488, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moons & Stars Dress ", + "GiftDropId": 11489, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11489, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,4PI6XssggEKRxkGlWeo8KQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jigsaw Moon & Stars Dress", + "GiftDropId": 11490, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11490, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,eutz2irupECSYGMtru3NMQ,Gruqp7EGM0WJbAM_F8hWbQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowflake Dress", + "GiftDropId": 11491, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11491, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet", + "GiftDropId": 11493, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11493, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,Adyl5MkwQEKK_MT5AluYkA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet (White)", + "GiftDropId": 11494, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11494, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,BizZfhG8ikOOEvAxN6w48A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet (Green)", + "GiftDropId": 11495, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11495, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,KfjLWNUbpEClo_qafEfUEw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet (Pink)", + "GiftDropId": 11496, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11496, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,zJKd2ZtIsUGCdHP1M0215Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet (Blue)", + "GiftDropId": 11498, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11498, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape", + "GiftDropId": 11499, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11499, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,07qFFGmwm0qmIikemncBkQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Cape (Midsummer Blue)", + "GiftDropId": 11500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,8M72ydR_uUSsli43PH2Eyw,wQxO4xmXCUGeC9ZHfDNGTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape (Raven)", + "GiftDropId": 11501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,F0o3eeWbCUaUAGRUdI0z7A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Cape (Midsummer)", + "GiftDropId": 11502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,hRl4UTGoBUi5dmu0f4s76A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Cape (Midsummer Verdant)", + "GiftDropId": 11503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,qvK8xgbyuE-dW3--Ku-mvw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Cape (Midsummer Obsidian)", + "GiftDropId": 11505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,W83EASFUS06FBVMfL80ruw,Ydd6tdb9dUGooM6WAczNjQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape (Red)", + "GiftDropId": 11506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Goalie Gloves (Red)", + "GiftDropId": 11507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,l2g5qO9dokiNepH92oPmug", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Gloves (Purple)", + "GiftDropId": 11509, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11509, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,whEHo6Rhr0CxsDBsBD32WA,av4PwLz6YkmpBRImQZgn4Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Goalie Gloves (Blue)", + "GiftDropId": 11510, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11510, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "95ab7a7c-c35d-4da5-9955-0921064470b6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gekko Hair", + "GiftDropId": 11512, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11512, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9656a307-0c79-4b8f-910f-e67c454faefb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Pods (Teal)", + "GiftDropId": 11513, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11513, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9656a307-0c79-4b8f-910f-e67c454faefb,mG0HW8fJkUOE5u7Whg4kag,3CLmVNB_p0Gd5N8dN74TBw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Pods (White)", + "GiftDropId": 11514, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11514, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "967187b8-df20-4f4f-b48f-10b9ea75cedf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Farmer Overalls", + "GiftDropId": 11515, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11515, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (White)", + "GiftDropId": 11516, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11516, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,1919d319-6cce-4500-8766-15fed6a13fa8,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Gold)", + "GiftDropId": 11517, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11517, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,lBe3yxuE40eBmTrnEHBqQQ,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Purple)", + "GiftDropId": 11518, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11518, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,oZ8k0Qv3SkG-DkY0_dP7UA,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Teal)", + "GiftDropId": 11519, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11519, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96ca8d50-0721-47a3-a988-018a1c157677,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drumset Backpack", + "GiftDropId": 11520, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11520, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (White)", + "GiftDropId": 11521, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11521, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,4oywwjb3-kifr-um9x87Pw,11ZEZTFhy0ONpoXb3kiewQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Suspicious Goblin Shirt", + "GiftDropId": 11522, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11522, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,HQOKcDCvVUCItkAKo2ygGg,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (Blue)", + "GiftDropId": 11523, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11523, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,i4Zu9uZuWkWwm8IVGZwkbA,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (Orange)", + "GiftDropId": 11524, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11524, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,lYsxZfxd0EadrnjliEj4Ug,xnZj7ipl60WO8e_BXK-mlw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lunar New Year Sweater (Tiger)", + "GiftDropId": 11525, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11525, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,Rd-iQjCjUUW8_o2kIb1rFw,Ez3OIIGl0Eqys2JGnSnQHw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Pattern Sweater", + "GiftDropId": 11526, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11526, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,ymRNNF0h3UOv-yH0ILxhiA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Sweater (Ethan Bortnick)*", + "GiftDropId": 11527, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11527, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Blue)", + "GiftDropId": 11528, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11528, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,bgRKH1wfqkWVHcuSnFYnlQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Green)", + "GiftDropId": 11529, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11529, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,o2WfRyjJy0CKoUg8YIxNjQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Tan)", + "GiftDropId": 11530, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11530, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,P9bBSL0YLEyjN8PxMfgbKQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Black)", + "GiftDropId": 11531, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11531, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,yA0KhVg19kWqG1UkyxQogQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (White)", + "GiftDropId": 11532, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11532, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973dc863-b9a5-40d8-8f15-4096e75bd2cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Red)", + "GiftDropId": 11533, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11533, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97c8e2f3-e786-42e5-8852-4abec5dc645d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweet Tooth Hat (Milk Choco)", + "GiftDropId": 11534, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11534, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97c8e2f3-e786-42e5-8852-4abec5dc645d,_8OmgC7c80CsvQN41U6XyA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweet Tooth Hat (White Choco)", + "GiftDropId": 11535, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11535, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Blue)", + "GiftDropId": 11536, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11536, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,357eb160-360b-4a63-840d-65d11cc8ffc2,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Green)", + "GiftDropId": 11537, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11537, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Black)", + "GiftDropId": 11538, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11538, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,a38254c0-00e3-429b-9d5d-b9e6a9812e69,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Red)", + "GiftDropId": 11539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3a9b576-5433-4305-bd96-b08820c09212,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (White)", + "GiftDropId": 11540, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11540, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3KmqVuMQkCYK6sVTMOTOA,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Purple)", + "GiftDropId": 11541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,RKmRHk2N_U2gd91nybo6vg,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Yellow)", + "GiftDropId": 11542, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11542, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "988e4069-4341-428b-bbf5-023309891385,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Silver Sequins)", + "GiftDropId": 11544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "98e4c868-df73-4755-84b6-c4d12723b811,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Pop Rock Dress", + "GiftDropId": 11545, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11545, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9a366f8b-ea5b-49ae-a98c-f6b282e9bf14,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Gold Sequins)", + "GiftDropId": 11546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit", + "GiftDropId": 11547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,bgWM6wBe60q2mIHN5dPh4Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit (Green)", + "GiftDropId": 11548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,cqYUoDpfkEi8Qp2DrpQytA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit (Pink)", + "GiftDropId": 11549, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11549, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,eQy0qwre-Ui7_sCCNuWCSw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit (White)", + "GiftDropId": 11550, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11550, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,lRmNfk8vuEe4Z5ToWvWcTg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit (Blue)", + "GiftDropId": 11552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab4ea8a-1b16-4969-9b80-8e36b1f782ca,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "He-Man Bracers", + "GiftDropId": 11553, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11553, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ad40310-7cb9-473d-920c-5c18d7972030,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Cap ", + "GiftDropId": 11554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ad40310-7cb9-473d-920c-5c18d7972030,mQTpoW0-AEufdFmApqtRXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Cap (Ghost)", + "GiftDropId": 11555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b5406c4-8589-47e4-9f69-4fa4733615e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turkey Hat", + "GiftDropId": 11556, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11556, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b5406c4-8589-47e4-9f69-4fa4733615e7,yXDNXmcJvUC4eCx9oGItcA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turkey Hat (Snowy)", + "GiftDropId": 11557, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11557, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b5bde11-7408-4798-9fcb-c7ec175444df,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoop Earrings", + "GiftDropId": 11558, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11558, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b62cbca-694f-4a32-b910-14da66bee9bb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Settler Shirt", + "GiftDropId": 11559, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "Drops occasionally after Rec Rally games.", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11559, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b636782-47f0-4218-9a1d-be65e550dc44,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bongo Belt", + "GiftDropId": 11560, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11560, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf5d259-7774-4cbe-a90f-7f188cc0dce7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thick Goatee", + "GiftDropId": 11561, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11561, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf75b23-84e9-436b-bbb8-4180ccd86b94,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wolf Cut Hair) ", + "GiftDropId": 11562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Grey)", + "GiftDropId": 11563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,22dc463a-a89b-46ad-9a0d-557c742b4a80,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (White)", + "GiftDropId": 11564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,59866578-d4e0-417b-9483-233ab108b1ac,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Cherry)", + "GiftDropId": 11565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Black)", + "GiftDropId": 11566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ed134bee-d199-43eb-98bd-206571603f40,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Blue)", + "GiftDropId": 11567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ITH2OpzjP022vZ5JgxV_iQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlets (Yellow)", + "GiftDropId": 11568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,PMa9370LPEig_7pKwCceEQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Green)", + "GiftDropId": 11569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c20fdd5-acf1-426c-b85a-2220ceee9472,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Short Curly Twists Hair ", + "GiftDropId": 11570, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11570, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (Orange)", + "GiftDropId": 11571, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11571, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,DRS8xu3AqUOy2L0RKF3f7g,A7Y52vGIN0ijEKsWR_GQLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (Blue)", + "GiftDropId": 11572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,ZSOuWuKVCkqaIKc5d23G8Q,A7Y52vGIN0ijEKsWR_GQLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (High Seas Contest)", + "GiftDropId": 11573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Green)", + "GiftDropId": 11574, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11574, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Blue)", + "GiftDropId": 11575, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11575, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,7Jx8mrxoi0aQtZEb03CdRA,-IgxYllxkEyr7V1gosWXUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Green Lightning)", + "GiftDropId": 11576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,916384ca-e209-42a0-bd64-c64f5a40b56f,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Red)", + "GiftDropId": 11577, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11577, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,TLrw3oncCE2MeuVifXSWTg,-_ViYCHHRUip7oN_AnH0Og,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Pouncing Tiger)", + "GiftDropId": 11578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c4976c1-a0eb-4a1e-b5cd-08d44a4b3011,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Horseshoe Earring", + "GiftDropId": 11579, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11579, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Button Top (Pink)", + "GiftDropId": 11580, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11580, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,49f5864f-9d40-497c-88c8-e87f64d41d74,dafa658e-753b-46cb-bd85-85c1de5e6ea7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Button Top (Tan)", + "GiftDropId": 11581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,c5deba2a-6e35-4b13-8e94-8ba5457f39df,dafa658e-753b-46cb-bd85-85c1de5e6ea7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Button Top (Yellow)", + "GiftDropId": 11582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,e0397982-c2c2-4733-9a40-46e18675b5af,dafa658e-753b-46cb-bd85-85c1de5e6ea7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Button Top (Orange)", + "GiftDropId": 11583, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11583, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Purple)", + "GiftDropId": 11584, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11584, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,08r7prRREUi-Hvp1Xze-wQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mini Droid Hat", + "GiftDropId": 11585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Black)", + "GiftDropId": 11586, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11586, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,67fc9269-8dd8-4d6f-b594-c77e716f2482,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Green)", + "GiftDropId": 11587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,7qVilU94X0Kldpvku2mcng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alo Yoga Bucket Hat", + "GiftDropId": 11588, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11588, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,d6823e01-69f0-4f85-b94a-74894356a2cf,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Maroon)", + "GiftDropId": 11589, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11589, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d2ea3c2-c199-40ed-a6c3-fab5f8dca7d6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cow Ears Headband", + "GiftDropId": 11590, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11590, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (Gold)", + "GiftDropId": 11591, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11591, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rmq1AOQvtUGOHvbPUximwg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (Black)", + "GiftDropId": 11592, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11592, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rxMCIkLb2UO0Z3tsqtYuSw,x8nPf0xEwUiRdBQU00Bu1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Diamond Crown", + "GiftDropId": 11593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zljmtj5WqUaRvB3XQTgJXg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (White)", + "GiftDropId": 11594, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11594, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zu3hTm6JyEa0sE72KtVGXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Crown (S.)*", + "GiftDropId": 11595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d68e9f4-6ea0-4717-bb78-f2783a14a6b6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Gloves (Purple)", + "GiftDropId": 11596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d68e9f4-6ea0-4717-bb78-f2783a14a6b6,KTidYfH0ckWxJGs5qzUBTQ,VSZX99mSt0e7gPRM2_XzMw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Gloves (Blue)", + "GiftDropId": 11597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d9fadb6-97eb-480e-a224-4e0179082071,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Meatball Buns Hair", + "GiftDropId": 11598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (White)", + "GiftDropId": 11599, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11599, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,hgLq0WyUAUSl2sboUrpTKQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (Blue)", + "GiftDropId": 11600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,JzLPlVNG20G9mxG_4PF8Fg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (Navy)", + "GiftDropId": 11601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,M5uFQQpoQE-5CKMJnDv_LA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (Green)", + "GiftDropId": 11602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,VuMDnpnK50mzgUMwJ4F6Jw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (Orange)", + "GiftDropId": 11604, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11604, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Yellow)", + "GiftDropId": 11605, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11605, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,gDP3y0J2EUayzVvBT9-92w,dMDMDExSmEKOF_kQIHaowg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Getaway Contest)", + "GiftDropId": 11606, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11606, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,GH9q8_0O9EqjGdz7lGWD2g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Blue)", + "GiftDropId": 11607, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11607, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,kBmmFoqo-0eLSSAhen-VLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Raincoat", + "GiftDropId": 11608, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11608, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,m8x6fiLEw0m4pJywntEpzg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Raincoat", + "GiftDropId": 11609, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11609, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,M-N9vQt0CEefqgmeLp3l4g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Green)", + "GiftDropId": 11610, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11610, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,q_HcScqHgEG-x70g1wtfLA,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Red)", + "GiftDropId": 11611, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11611, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,tVbu4hUFHkmEKEz38GG2Nw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Raincoat", + "GiftDropId": 11612, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11612, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Brown)", + "GiftDropId": 11613, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11613, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,17e44296-1cd9-4f8e-9aa7-3837dc69279a,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Cherry)", + "GiftDropId": 11614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c0c33a35-494c-4a1a-aa53-d27d9b9ef5a4,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Yellow)", + "GiftDropId": 11615, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11615, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c4ebfd1a-fcda-4b98-a151-a941b1801867,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Black, Gold)", + "GiftDropId": 11616, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11616, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,rfIzQjxeRU60VdRQXG9Ccw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Pink)", + "GiftDropId": 11617, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11617, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,tOlpTL8F1Ui_akCjHq5vRg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Green)", + "GiftDropId": 11618, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11618, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wat8f6fs80KptZbW39e8tA,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (White)", + "GiftDropId": 11619, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11619, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wkqKPZmnoU-8TXSWzi2-Ow,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Black, Silver)", + "GiftDropId": 11620, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11620, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb95934-90f3-4f48-a6b4-d87d75d9bdc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Eggshell Chick Gloves", + "GiftDropId": 11621, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11621, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9f2cf07e-f98f-48bc-9c74-784ba4b94527,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chess Knight Armor", + "GiftDropId": 11622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fb62d0c-67ff-4675-85d3-a2869c2330aa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Helmet (Blue)", + "GiftDropId": 11623, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11623, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fb62d0c-67ff-4675-85d3-a2869c2330aa,ijCbiOeGD0C4uznegq9CXw,VzyoPsQyCUaW6RSusgVUGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Helmet (Red)", + "GiftDropId": 11624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fd1be12-1577-4800-b79f-6da29f299826,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reclympics Medal (Gold) ", + "GiftDropId": 11625, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11625, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fd1be12-1577-4800-b79f-6da29f299826,mVj9t_XVCEqdx89v2zdjHQ,kJ_pNxSWKE6HZX4Sc7Dv0g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reclympics Medal (Silver)", + "GiftDropId": 11626, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11626, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fd1be12-1577-4800-b79f-6da29f299826,zNLzEvpTpkOIi0J3fIvh1A,OqC4ny2rk0yJJOHemspV7A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reclympics Medal (Bronze)", + "GiftDropId": 11627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ffa6e06-5200-4e53-ac13-f8491aecc864,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Armor ", + "GiftDropId": 11628, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11628, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Shirt", + "GiftDropId": 11629, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11629, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,dZyVey0_oU-3u6FLbIdGLA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Collar", + "GiftDropId": 11630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,rP0LMoFjqUCU1LWA6_wOnw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Shirt (Burgundy)", + "GiftDropId": 11631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Shirt", + "GiftDropId": 11632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11632, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,dE_ZWKPV90utoyWtRalh8w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Bat Costume Shirt", + "GiftDropId": 11633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11633, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,GPX92X5n3UWMbh3C13oB5Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Shirt (Black)", + "GiftDropId": 11634, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11634, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,jIAMeDkA80GVHYTi0d9LkQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Bat Costume", + "GiftDropId": 11635, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11635, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (White)", + "GiftDropId": 11636, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11636, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,0zldWzi4H0OQwsWPt6gl-w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (Red)", + "GiftDropId": 11637, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11637, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,a0A1q_e1q06qquiu2KaZhA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (Blue)", + "GiftDropId": 11638, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11638, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,M_BhFve7SkC7IJoymLiCLg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (Orange)", + "GiftDropId": 11639, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11639, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,rwESUxIrQEKA2hdQpcaPaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (Green)", + "GiftDropId": 11641, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11641, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a12f724f-4a73-4ab8-aad4-6bfc662b4dd6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Undercut Long Hair", + "GiftDropId": 11642, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11642, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Pink)", + "GiftDropId": 11643, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11643, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,bmi_S166JEGWhf_7woVL0A,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Tan)", + "GiftDropId": 11644, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11644, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,dSEiNUAZnUmErO5Vfv51zg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Teal)", + "GiftDropId": 11645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,jTG-jnKn0k-Etg_-4Gb9gw,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (White)", + "GiftDropId": 11646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,w9I-I0GWRE-3RgOUMMlHjg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Black)", + "GiftDropId": 11647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grinning Cat Shirt ", + "GiftDropId": 11649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,4YH_0kN1ZUSVEQmCBiTt7Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Penguin Onesie", + "GiftDropId": 11650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,McX_jAOowUmjXNPEHbdS7Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grinning Cat Shirt (Pink)", + "GiftDropId": 11651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clockwork Shoulder Bag", + "GiftDropId": 11656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,0EjPIiuYpEGIWup3pKeC8g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clockwork Shoulder Bag (Green)", + "GiftDropId": 11657, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11657, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,dkJNh15DnEuO1BatzpI_uw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clockwork Shoulder Bag (Rose/Gold)", + "GiftDropId": 11658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,GAWBaCDBzUqdyTGA-HPczQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brown Clockwork Shoulder Bag", + "GiftDropId": 11659, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11659, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,XMAOwHGXVECoeKoWb_-luw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clockwork Shoulder Bag (Silver)", + "GiftDropId": 11660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Cape", + "GiftDropId": 11661, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11661, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,EmlwkB77pUiiDEmc2pMVaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Cape (Jade)", + "GiftDropId": 11662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Red)", + "GiftDropId": 11663, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11663, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,_9QlnTPXuEO5OQ3H0CwFkA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Green)", + "GiftDropId": 11664, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11664, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,5_-QLURc_0W8qeeN3Q3iGQ,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Creators Contest 2)", + "GiftDropId": 11665, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11665, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,cKLBS6pbf0SFuavWyeZ7GA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Black)", + "GiftDropId": 11666, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11666, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,DZyW-gOG9U-QLGOMFBhOoA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Pink)", + "GiftDropId": 11667, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11667, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,MbusQ9bte0i9zirlxtNkSQ,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Blue)", + "GiftDropId": 11668, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11668, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,mqdncbYcuUSGFvFqEU0z4A,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Purple)", + "GiftDropId": 11669, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11669, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,pEiU6yZm2U-X9ip_CM1SAw,PIV6RtD7Pk-UTcUp2wF1ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Gold)", + "GiftDropId": 11670, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "For earning $50,000", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11670, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat", + "GiftDropId": 11671, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11671, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,JilOXG1I_Ei65mw6TzFWgg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat (Steampunk)", + "GiftDropId": 11672, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11672, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,jXRXO3CVE0-H_iaxbMhFhA,VZyHWGKNJEGSxDT2GO3ebA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat (White)", + "GiftDropId": 11673, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11673, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,YSnoHFmJDUa_XCK6JMMh2g,VZyHWGKNJEGSxDT2GO3ebA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat (Grey)", + "GiftDropId": 11674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a4c26527-8f75-44da-b150-7aaf8ef739c1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Green)", + "GiftDropId": 11675, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11675, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a5b747b8-c1a5-4bce-999f-e13dbe77bde6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disco Ball Hat", + "GiftDropId": 11676, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11676, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a600fa80-ed4e-4acb-8d6d-72fa87d2bef3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nutcracker Crown", + "GiftDropId": 11677, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11677, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (Red)", + "GiftDropId": 11678, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11678, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,596097a8-d545-4256-959d-1d3cd96fc64c,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (Yellow)", + "GiftDropId": 11679, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11679, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,ce465d53-3807-423f-baa0-bdba2a75ceb3,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (White)", + "GiftDropId": 11680, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11680, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Black)", + "GiftDropId": 11681, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11681, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,4828b50c-95b6-466a-bb25-514891d78202,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Grey)", + "GiftDropId": 11682, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11682, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,55901f12-d5b5-4fa8-b4c8-e479689ee39d,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Blue)", + "GiftDropId": 11683, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11683, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,d6823e01-69f0-4f85-b94a-74894356a2cf,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Maroon)", + "GiftDropId": 11684, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11684, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6cbfe76-534a-4655-a8a8-3fed13d001c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bald Top Hair", + "GiftDropId": 11685, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11685, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Red)", + "GiftDropId": 11686, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11686, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,54d3c589-30ba-44c1-a77c-8f9e16eb0b20,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Yellow)", + "GiftDropId": 11687, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11687, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,82de1ca3-67d6-454d-84fb-0eeece71fcbc,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Orange)", + "GiftDropId": 11688, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11688, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,fe5288bc-0e02-4ea3-b17d-dee0e576979d,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Green)", + "GiftDropId": 11689, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11689, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a79e855a-c4fc-4ffa-be2f-9f4fef0ab1d5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Outlaw Hat", + "GiftDropId": 11690, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11690, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a928c6dc-442f-4cbb-b705-cc5a3969b34a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teela Hair", + "GiftDropId": 11691, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11691, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Wings (First Release)", + "GiftDropId": 11692, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11692, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,cS-oBNlLE061SIB40QjiDg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Wings (Forbidden One)", + "GiftDropId": 11693, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11693, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,oSoW8v6emEW4g1IduUNzOA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Wings (Invasion 2)", + "GiftDropId": 11694, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11694, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,rFcMAp5UvkuGalprkr_ARQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Wings (Invasion)", + "GiftDropId": 11695, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11695, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Shirt (Tan)", + "GiftDropId": 11696, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11696, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,0d2830e7-8eb0-4fa3-99bc-7c80f01dd991,5814a331-6155-4df4-b921-3ffc6059e44c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Shirt (Blue)", + "GiftDropId": 11697, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11697, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,5owofMF_Y02WX2vwVL2aew", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Boyscout Shirt (Mutant)", + "GiftDropId": 11698, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11698, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,OX1ituawfUqYC-caC1WcCg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Boyscout Shirt", + "GiftDropId": 11699, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11699, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Field Hockey Uniform (Red)", + "GiftDropId": 11700, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11700, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,7b0d6661-e856-4ec1-ab90-d89c28a70826,1fede91a-434e-49a5-882e-e6db107112a8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Field Hockey Uniform (Blue)", + "GiftDropId": 11701, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11701, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a994fc19-974e-444e-ae9e-c2f6c32432bb,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Tuxedo Dress", + "GiftDropId": 11702, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11702, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "aaed6385-0ba5-45f3-b0d2-6b0a9ab79628,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disguise Glasses", + "GiftDropId": 11703, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11703, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Black)", + "GiftDropId": 11704, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11704, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,fvoaMN4M10WS6jiA6XlOJQ,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Blue)", + "GiftDropId": 11705, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11705, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,jXBi28cRV0CEQgKIrpD0_A,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Red)", + "GiftDropId": 11706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,PwsLxCnzOkSW-RGz3tNb1w,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Tan)", + "GiftDropId": 11707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,uiBklotTUEqRI2F67vyJyA,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Purple)", + "GiftDropId": 11708, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11708, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab1d252a-c15c-4a97-8e48-da0813d33b00,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Lanyard (Purple)", + "GiftDropId": 11709, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11709, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab446412-84cd-490d-84e0-2e666633b72f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dirt Bike Helmet", + "GiftDropId": 11711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AbYdU7O_9U-Lwg7zFVZzXQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reindeer Antlers", + "GiftDropId": 11713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac957e1e-676b-45c9-a39d-b238d2329a03,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Horseshoe Bracelet", + "GiftDropId": 11714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Brown)", + "GiftDropId": 11715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,_6LmNp0uX0Ky4jp2j62U2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Green)", + "GiftDropId": 11716, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11716, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,192ba73d-6990-42da-8fe0-914c2a7181eb,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Black, Gold)", + "GiftDropId": 11717, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11717, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Yellow)", + "GiftDropId": 11718, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11718, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,624c85e5-095a-48b6-85fb-c9bbade19a8d,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Cherry)", + "GiftDropId": 11719, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11719, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,AEqCasEqOUCgetoTwuMTug", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Hat (Invasion)", + "GiftDropId": 11720, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11720, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,cNarx7yecE2gk-7mYaoHwA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Pink)", + "GiftDropId": 11721, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11721, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,K5vPqD3BrEuODRDzFdC6Hw,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Black, Silver)", + "GiftDropId": 11722, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11722, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,teVKVbVEsEyqOSuRdqHQzA,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (White)", + "GiftDropId": 11723, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11723, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,zoUmQIcOrU6jgBu_0urrGA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Hat (Invasion 2)", + "GiftDropId": 11724, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11724, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,e8aNxGFlBUWy59Bfrvvv7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brown Overalls Skirt", + "GiftDropId": 11727, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11727, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,HDpCyFn40kOxJ0P_xJr4-A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Overalls Skirt", + "GiftDropId": 11728, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11728, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,OZ1v-s_XFUyfMA5mfd47FA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Overalls Skirt", + "GiftDropId": 11729, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11729, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,sCj73U9p5E6DQreOsbutqw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Overalls Skirt", + "GiftDropId": 11730, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11730, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad55bb62-671a-4a29-aec8-36a1e3104f05,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pioneer Cuffs", + "GiftDropId": 11731, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11731, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad6e7c98-8056-4e12-92ad-bfa19a00f4af,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Shoulder Basket", + "GiftDropId": 11732, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11732, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunflower Sundress", + "GiftDropId": 11733, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11733, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,6PyJEQxyd0K9TPRnvt_86Q,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Estate)", + "GiftDropId": 11734, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11734, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,as9fjqDWiUi1w7yYavKZXA,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Sunset)", + "GiftDropId": 11735, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11735, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,OJYpuFw810Sg4bTw0XQf-g,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Lodge)", + "GiftDropId": 11736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,QlZt51mdn0WuiqKoJaIRyA,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Vineyard)", + "GiftDropId": 11737, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11737, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rGMFdPKmK02_OvIIFYlAxA,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Veranda)", + "GiftDropId": 11738, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11738, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rsh2uKli90OoEnJZRFc2Ww", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boho Sundress", + "GiftDropId": 11739, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11739, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,-sqfCQpzpUyjEShEXH9JYQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Sunrise)", + "GiftDropId": 11740, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11740, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,sz-J7RjesE-ke3bKwumzZQ,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Meadow)", + "GiftDropId": 11741, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11741, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,t4gMAKp4L0WBaTGf_rtqFw,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Yacht)", + "GiftDropId": 11742, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11742, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,wxvSDMommkenIl5hTY2fdQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Seafoam)", + "GiftDropId": 11743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Donut Dreams)", + "GiftDropId": 11744, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11744, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,56qchovVVEaVwL9S52kneA,BAjMoTHbD0mSCjoG9jmzjA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Sour Popsicle)", + "GiftDropId": 11745, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11745, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,9P8ARRUYdk6hCoGMKhix4w,o__JORNtYEiJEyyoBIimPA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Pink Flamingo)", + "GiftDropId": 11746, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11746, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,nu_UGtkJOUK-5MWaW83MUg,pgBFpOtl00K2zsTJcfrefQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Watermelon Rain)", + "GiftDropId": 11747, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11747, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,Pg2cVQonrkmbXZdsNcn-KA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wacky Shorts (SummerCamp Contest)", + "GiftDropId": 11748, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11748, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,sJioq5ARDUyMHFji_6OxFw,bjXO36Nu6EWD2dU1UC4Uwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Pina Colada)", + "GiftDropId": 11749, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11749, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,zJMD-_HR80WCAUqYGe7_NA,rAzhaLh1nEWMd9v1D-HWcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Lonely Island)", + "GiftDropId": 11750, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11750, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae7c9d1f-d371-4dfe-a6df-d74662606aae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stranded Astronaut Suit", + "GiftDropId": 11751, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11751, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "aeda4e5d-9cfc-44ec-b325-ab8b2d906a8f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bullwhip Belt", + "GiftDropId": 11752, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11752, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Hat (White)", + "GiftDropId": 11753, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11753, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,PR5dh2jf2kqGLO0lXgA69A,-lYK7LhYyEy6wqL1tIE9cg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Hat (Black)", + "GiftDropId": 11754, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11754, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Red)", + "GiftDropId": 11755, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11755, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,3bqY_T4_HEy406HcXrfLuA,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Blue)", + "GiftDropId": 11756, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11756, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,9ir4Es5d0Ue-8bn2EUcCZQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (White)", + "GiftDropId": 11757, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11757, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,aaaG7Fg8fky2dkrwVsA30g,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Yellow)", + "GiftDropId": 11758, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11758, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,I4lNZy7lR0uyUN5Vk3fabA,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Pink)", + "GiftDropId": 11759, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11759, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,SMeMLRUF-UWrOcXYJzgScw,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Black)", + "GiftDropId": 11760, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11760, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,WkI_v-Sua0WlhmMf8R4aGA,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Green)", + "GiftDropId": 11761, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11761, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,XaNgcjkwP0uxS5_S1JaQrA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Space)", + "GiftDropId": 11762, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11762, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Backpack (Blue)", + "GiftDropId": 11763, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11763, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,5GEhQr7Iy0-kB0yCA3uJ6g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Backpack (Yellow)", + "GiftDropId": 11764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,AtF5be-huUeADedbRurRcQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Backpack (Red)", + "GiftDropId": 11765, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11765, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,cxWuO4qBtUOKYmCXI0D5Jg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Tiny Backpack", + "GiftDropId": 11766, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11766, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,FIZdMEUgykOHb7fVlOfa5g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Tiny Backpack", + "GiftDropId": 11767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,T9XdU5xAFEqX3QV__SjXYA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Backpack (Pink)", + "GiftDropId": 11768, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11768, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,wrobkXV-10CD1JJtgyy6Fw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Tiny Backpack", + "GiftDropId": 11769, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11769, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "affdc9ad-8312-4421-8f56-e35dfdaeb63a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lifeguard Whistle", + "GiftDropId": 11770, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11770, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Teal)", + "GiftDropId": 11771, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11771, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,C3ll7uPfUkeZ1QLX80_BpQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Yellow)", + "GiftDropId": 11772, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11772, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,EbVDqEJQOk6j0UvX3t-8rQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Blue)", + "GiftDropId": 11773, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11773, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,grutFwJD_0Cb3t6fddNg6w,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Red)", + "GiftDropId": 11774, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11774, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,JS7aa4QSUUOpUYPqRZEb5g,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Orange)", + "GiftDropId": 11775, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11775, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,rwojzpr0E0ylG6_Vv_MVaQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Purple)", + "GiftDropId": 11776, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "Breakdance inspired colorway", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11776, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "akAhnN0cFkecj8q3spixkw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Gold)", + "GiftDropId": 11777, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11777, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ASHnWS0h9kOJhbOUwxWKFQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Gown (Bachelor)", + "GiftDropId": 11778, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11778, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ASHnWS0h9kOJhbOUwxWKFQ,U2ZbHn8WJEySUXVpzAY6ig,6nmHu9zj8k-tEz0tBHblnQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Gown (Level 1)", + "GiftDropId": 11779, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11779, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "awOFE0_GSECr8GBNBo6a_w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Giraffe)", + "GiftDropId": 11780, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11780, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Navy)", + "GiftDropId": 11781, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11781, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,05K7dmjigkCByO2ufw9jtw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Green)", + "GiftDropId": 11782, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11782, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,1773d5d8-4714-4721-b30c-97e25d6f2a5a,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Red)", + "GiftDropId": 11783, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11783, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Purple)", + "GiftDropId": 11784, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11784, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,faedf215-289b-40f7-90cc-f5b98517d133,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Blue)", + "GiftDropId": 11785, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11785, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,PLRhiOhhb0KhatFH7f3pwA,F9vYkdcuGUOSGEg0wpQt2Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Dress (Orange)", + "GiftDropId": 11786, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11786, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,qoVZuGa5NkOmyfikHjDhXw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Black)", + "GiftDropId": 11787, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11787, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,RwgnKTfMEkWrAp_OMGy__Q,F9vYkdcuGUOSGEg0wpQt2Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Dress (Blue)", + "GiftDropId": 11788, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11788, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yDZFr27Zq0-JH-EsEsxG2g,F9vYkdcuGUOSGEg0wpQt2Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Dress (Green)", + "GiftDropId": 11789, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11789, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yOw1WqEN0EWqR9t53EsQpw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (White)", + "GiftDropId": 11790, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11790, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b07a3964-7a53-4467-aa85-ec19cc27a57b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alien Head Earrings", + "GiftDropId": 11791, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11791, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Overalls (Blue)", + "GiftDropId": 11792, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11792, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,EiGgN7uVukqoRE7UJcMLTw,H3OQDBef1UaacSD52p8Hdw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Overalls (Green)", + "GiftDropId": 11793, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11793, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,iokdlBfjuEuAwqIMOQwxdA,H3OQDBef1UaacSD52p8Hdw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Overalls (Red)", + "GiftDropId": 11794, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11794, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,nKauYAyWhkm2AMHFyC-fLg,H3OQDBef1UaacSD52p8Hdw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Overalls (Orange)", + "GiftDropId": 11795, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11795, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0a2e988-9942-4c52-a714-f1bc12fa6290,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Shades (Tokyo Machine)*", + "GiftDropId": 11796, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11796, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest", + "GiftDropId": 11797, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11797, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,1-_ssucgeEalgr6EDL3S9g,Ru4HN3stVUutQ9rUh7ro1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest (White)", + "GiftDropId": 11798, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11798, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,2eTBbHTkf0uxy9JqA507Hw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest (Steampunk)", + "GiftDropId": 11799, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11799, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,cbn6vE0gDUOuklVhJv1vNA,Ru4HN3stVUutQ9rUh7ro1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest (Grey)", + "GiftDropId": 11800, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11800, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b148cb1e-df81-442f-aea6-ab1727aad00e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Afro Hair", + "GiftDropId": 11801, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11801, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b16768f0-ce8b-4844-96f1-e38d63f9c1fc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bucket Hat", + "GiftDropId": 11802, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11802, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b17591ba-3c2d-4309-ab01-b6743424e07e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Hat", + "GiftDropId": 11803, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11803, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b17591ba-3c2d-4309-ab01-b6743424e07e,l9cF1s3B8EC6BGlQ4Tx1cg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Hat (Shamrock)", + "GiftDropId": 11804, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11804, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Brown)", + "GiftDropId": 11805, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11805, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Blue)", + "GiftDropId": 11806, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11806, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,97938f4c-52b8-4c85-8575-856654666316,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Gray)", + "GiftDropId": 11807, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11807, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,cac27853-e2df-4d77-b3fd-af3bc0813f01,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Tan)", + "GiftDropId": 11808, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11808, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,ugpS7o-ZxkCv7HAvhewZgw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Red)", + "GiftDropId": 11809, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11809, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Triton)", + "GiftDropId": 11810, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11810, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,CahBzgN3D0y46AQsvGC14A,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Leviathan)", + "GiftDropId": 11811, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11811, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,Su7kiW24d0KapNns96JoFQ,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Kraken)", + "GiftDropId": 11812, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11812, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1ca1dc4-6867-48b6-a332-4efff06a5db1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cleric Gloves", + "GiftDropId": 11813, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11813, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1ece775-b1c4-4c5b-b2bd-cd0542794dd1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Shirt", + "GiftDropId": 11814, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11814, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1ece775-b1c4-4c5b-b2bd-cd0542794dd1,g_jYTusUbU6W_6jHif-CKw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Shirt (Mardi Gras)", + "GiftDropId": 11815, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11815, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b35aae1f-f5fb-4417-bb6c-4ddce4ec499d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bindings of Elseware*", + "GiftDropId": 11816, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11816, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b35aae1f-f5fb-4417-bb6c-4ddce4ec499d,cfAfhzaNvkG7wGx0gkaRUg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bindings of Elseware (Shadowy Illusion)*", + "GiftDropId": 11817, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11817, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b37582a1-7904-4288-a47a-7a63a3cb28ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Soldier Helmet (Green)", + "GiftDropId": 11818, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Unlocked during Xbox launch", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11818, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3949221-9416-4afe-8777-440f01ec4c1c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2020 Shirt", + "GiftDropId": 11819, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11819, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3949221-9416-4afe-8777-440f01ec4c1c,oMz5rMzCxkiw9690ZkvlGw,gW2zFv0sFEmiodfw8p9P-Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Early Access Tee", + "GiftDropId": 11820, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11820, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3949221-9416-4afe-8777-440f01ec4c1c,zlBPAWMbOE2RuKoIy1Ps8Q,UwQiLub0-kqf4dNvQc-R0A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Shirt (TFO)", + "GiftDropId": 11821, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11821, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Black) ", + "GiftDropId": 11822, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11822, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,Aex0Zh1RQ0u9oTDFF1cFIg,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Yellow)", + "GiftDropId": 11823, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11823, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,El0s9F6cfkywcKOkqwbJtQ,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Grey)", + "GiftDropId": 11824, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11824, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,J9cK9BKtHUinG-DwAoPi3g,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Dreen)", + "GiftDropId": 11825, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11825, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,logtSrZSTUqwEmBw9i0qjA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec-On T-Shirt", + "GiftDropId": 11826, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11826, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,N0fBxjrCekO-HUqmc3MufQ,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Blue)", + "GiftDropId": 11827, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11827, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,oNoEl-nDqk-HLsfz1538oA,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (White)", + "GiftDropId": 11828, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11828, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,P49CJ5imfEuxH1rryrfFRA,nbgwLqKBnUyvieWX0i47dg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scrubs (Blue)", + "GiftDropId": 11829, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11829, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,PkMkvHzXek-yKyqJESZ3tw,nbgwLqKBnUyvieWX0i47dg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scrubs (Green)", + "GiftDropId": 11830, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11830, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,pQ_3mZI7yEaxMw9n_Fr4Sg,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Pink)", + "GiftDropId": 11831, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11831, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,Ris_kNVcgU-EK4SoMckC2Q,74J7skzs9EaIq09bZArjiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reclympics Shirt 2021", + "GiftDropId": 11832, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11832, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,TpFWTdEW2kqtpvc0sPv-dw,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Purple)", + "GiftDropId": 11833, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11833, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,-VF3K4miGE28LxMgqVehRQ,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Orange)", + "GiftDropId": 11834, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11834, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,vxZVeH2b_E6XlqyqCW0hBA,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Red)", + "GiftDropId": 11835, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11835, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4c93141-f387-4e42-9b04-12b7a97c9416,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Glasses (Popstar Blue)", + "GiftDropId": 11836, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11836, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cozy Winter Coat (Green)", + "GiftDropId": 11837, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11837, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,B3t4hjeUeEyT17nfbZgxAQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Cozy Winter Coat", + "GiftDropId": 11838, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11838, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,Grr0Jm6r9kuiZKvnLPz9tQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Cozy Winter Coat", + "GiftDropId": 11839, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11839, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,IEnB86oIL0KDa-zzcxhjwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Cozy Winter Coat", + "GiftDropId": 11840, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11840, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,nloukujf9kSwK1T2HiwJwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cozy Winter Coat (Pastel Blue)", + "GiftDropId": 11841, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11841, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,xLcqKXKH-0Gw1lrSSQe-Ag", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cozy Winter Coat (Pink)", + "GiftDropId": 11842, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11842, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,ZzJxs2oz6UuXCX5rGvLHFQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Cozy Winter Coat", + "GiftDropId": 11843, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11843, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown", + "GiftDropId": 11844, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11844, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,iGhiA5wU8kG3NH6P9NZvGg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown (Pink)", + "GiftDropId": 11845, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11845, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,-K940hWJXkee1HDrlurepg,ItJCR1utoU6i-syjJpxQqw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown (Green)", + "GiftDropId": 11846, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11846, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,SdSjmCkq-ECoboR2PwxJfQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown (Black)", + "GiftDropId": 11847, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11847, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Cap (Red)", + "GiftDropId": 11848, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11848, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,7amHTgEv-UOJSGl0ofo4mw,lb5tuJOqnUKp9prjjlgHmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Cap (Green)", + "GiftDropId": 11849, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11849, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,cKHAetNcgUOxFfDkAPPF9w,lb5tuJOqnUKp9prjjlgHmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Cap (Blue)", + "GiftDropId": 11850, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11850, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Shirt (Red)", + "GiftDropId": 11851, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11851, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,OnQeVxdstkS2zGxLBAuM3Q,i8bvbGAKREmAEbjKO-geOQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Shirt (Blue)", + "GiftDropId": 11853, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11853, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b66cb611-c079-42f0-ae04-6f51384dbe90,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Penguin Hat", + "GiftDropId": 11855, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11855, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6cee099-5840-401a-9d74-0b80ff71ee69,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Feather Boa (Mardi Gras)", + "GiftDropId": 11856, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11856, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6cee099-5840-401a-9d74-0b80ff71ee69,an_Z5HMFjkaHyHoZZV4AFA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Feather Boa (Rainbow)", + "GiftDropId": 11857, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11857, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6d10952-d492-45e5-b54c-de3ab138be0b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hot Dog Hat (Mustard)", + "GiftDropId": 11858, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11858, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6d10952-d492-45e5-b54c-de3ab138be0b,2KCpbel8JkaeAGQRgvpt2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hot Dog Hat (Ketchup)", + "GiftDropId": 11859, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11859, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Black)", + "GiftDropId": 11860, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11860, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,3a1oW3_MY0e4lDN2V1X4ig,za8Mz14Ww0KtC6wavUPXdg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Nonbinary Pride)", + "GiftDropId": 11861, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11861, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,9jB8U3yxjE6hanEZgMdvtA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - AAPI (AAPI Heritage Month)", + "GiftDropId": 11862, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11862, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,D_Xmo0rOzkS-kgq1CYXt3g,tnCJp2eDI0SwjVfJMhk3LQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Trans Pride)", + "GiftDropId": 11863, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11863, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,DIeasJUIj0KNetAzPzuIrg,o3Q2gADhh06dgaipkkdMsA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Bi Pride)", + "GiftDropId": 11864, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11864, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,EkA09Hj2m0u3c5STynn3Bw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - ANAM (Autism & Neurodiversity Awareness Month)", + "GiftDropId": 11865, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11865, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,G6Udm6kMdE28vmRY5KPanA,Fw79pqDPP0C8H07AnTY-Vg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Lesbian Pride)", + "GiftDropId": 11866, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11866, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,JTgXKeT7w0K2Mw4Jk2HCqg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Grey)", + "GiftDropId": 11868, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11868, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LovycnPHoUiP_N9w7BzsnA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Juneteenth)", + "GiftDropId": 11870, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11870, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LuYelZY8NkqmOp1pnxPXBg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Yellow)", + "GiftDropId": 11871, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11871, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,MfF0wizDjUa7RUE-AVJpvA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Intersex Pride)", + "GiftDropId": 11872, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11872, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,mvMeyStxGUGlNLSYNeSubQ,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Purple)", + "GiftDropId": 11873, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11873, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,-Nf7WM2TeEKujB637h3tRA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (White - Starter Pack)", + "GiftDropId": 11874, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11874, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,PIwziHk1BUuYkAf6kuK6wA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - BHM (Black History Month)\t", + "GiftDropId": 11875, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11875, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,PRLBrEEZhUumm3VnYVJP6Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Aromantic Pride)\t", + "GiftDropId": 11876, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11876, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,rNhOQoP3XkOBHV28ze2NpA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Orange)", + "GiftDropId": 11877, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11877, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,sf962XJ0tkis0svkMkZCXQ,4bI7QRvdnEansPkwx8Di9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Pan Pride)", + "GiftDropId": 11878, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11878, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,sxUE0iOSZEmezm54T7xI3Q,tlpa7195x0CkmSjpR1RArQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Rainbow Pride)", + "GiftDropId": 11879, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11879, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,TEgugZRs80iJbhL87RdYwg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Pink)", + "GiftDropId": 11880, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11880, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,tm7Cnd3LzkqWHA1JMrgoeA,nbLr3c3lOkiWhNg9IYbt6Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Ace Pride)", + "GiftDropId": 11881, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11881, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,u_Gzj9Nro0WS48xKnH9few,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Blue)", + "GiftDropId": 11882, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11882, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,Xt3Ndm8mC0qsLClPIbgwUw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Genderfluid Pride)", + "GiftDropId": 11883, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11883, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,yM5xRrd9OkmDGyQddwOP6g,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Red)", + "GiftDropId": 11884, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11884, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,ytmSzjhCr0Sm58MSNbwJUA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Green)", + "GiftDropId": 11885, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11885, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,Z10TTlOeW0mumezbqXKGzA,Ht0WRvpguUaLZ1tigCzCMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Gold)", + "GiftDropId": 11886, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "For earning $100", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11886, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b73ae23b-c911-4b09-a803-40999bdef6b8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cleric Headpiece", + "GiftDropId": 11887, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11887, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b74ef8c3-405a-4d68-a2bf-01579a9cc397,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Helm (First Release)", + "GiftDropId": 11888, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11888, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b772a5a9-dd79-43e4-8d95-f965d81bed8d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Kevin the Goblin Hat", + "GiftDropId": 11889, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11889, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b795c631-f075-4d32-ac87-c732b36cb932,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Light-Up Necklace", + "GiftDropId": 11890, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11890, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b79a6f2c-d960-4d8a-b05f-24e818ec5f60,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NBA Headband", + "GiftDropId": 11891, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11891, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Hair Hat (Blue)", + "GiftDropId": 11892, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11892, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,0WW04NMMfU2LLahCq0jQ6Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Hair Hat (Black)", + "GiftDropId": 11893, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11893, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,4kYWnAwZo0SDZFmiU8jJwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Hair Hat (Red)", + "GiftDropId": 11894, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11894, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,YfRfaC49J0yW0wnSJf5DwA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Hair Hat (Yellow)", + "GiftDropId": 11895, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11895, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b84f5e9e-11fc-424d-ad39-86901edb9edc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Demon Jacket", + "GiftDropId": 11896, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11896, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Nova)", + "GiftDropId": 11898, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11898, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,FFIpxInE-EKbk2GY-pIkyg,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Nebula)", + "GiftDropId": 11899, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11899, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,SXG9rdEkxkOR31Nk0aTOww,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Quasar)", + "GiftDropId": 11900, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11900, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b8e485d4-b5c2-480e-908c-d9b500375759,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (Cochlear Implant - Red)", + "GiftDropId": 11901, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11901, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b8e485d4-b5c2-480e-908c-d9b500375759,7ZRNVpxhWk-j8R3oj0oVXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (Cochlear Implant - Gray)", + "GiftDropId": 11902, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11902, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b8e485d4-b5c2-480e-908c-d9b500375759,8WJI7RAuaEy4KvQiQhoKBw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (Cochlear Implant - Blue)", + "GiftDropId": 11903, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11903, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Blue)", + "GiftDropId": 11904, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11904, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Red)", + "GiftDropId": 11905, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11905, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,rzUd1IMTKUmW0HeMPSIOBQ,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Green)", + "GiftDropId": 11906, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11906, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Cape", + "GiftDropId": 11907, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11907, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,EjNmQJBRnUet_ovEQ3HnDA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Cape (Blue)", + "GiftDropId": 11908, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11908, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,mO5wjf7_cEWNCHFR6ymGxA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Cape (White)", + "GiftDropId": 11909, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11909, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b95678aa-351a-4929-8a0e-0274a183eb18,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Necklace (Silver)", + "GiftDropId": 11911, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11911, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b96426ec-093d-4bfe-95e1-b88489479198,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Gloves", + "GiftDropId": 11912, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11912, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9987d0c-0cbf-41dc-9a9c-8fdb5165800e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Braided Beard", + "GiftDropId": 11915, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11915, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Blue)", + "GiftDropId": 11916, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11916, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Red)", + "GiftDropId": 11917, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11917, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,rzUd1IMTKUmW0HeMPSIOBQ,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Green)", + "GiftDropId": 11918, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11918, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Nightwatch)", + "GiftDropId": 11919, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11919, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,A7l6Q2clsk2XyKf62D3dHA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Ironbound)", + "GiftDropId": 11920, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11920, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,pXrZhtzjV02_qvIQoWEFWA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Hearthstone)", + "GiftDropId": 11921, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11921, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,VK4YBLXO10G2_aEl3ZQUGA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Whiteout)", + "GiftDropId": 11922, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11922, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Bracers (Black)", + "GiftDropId": 11923, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11923, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,62bd5dda-08da-4528-83c1-f0ca3812dc6e,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Bracers (Red)", + "GiftDropId": 11924, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11924, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,cdca593a-8840-4140-9145-fe962732040c,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Bracers (Brown)", + "GiftDropId": 11925, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11925, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,X3MkhL55Rk-0UK6h4dw0Eg,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Bracers (Crimson)", + "GiftDropId": 11926, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11926, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Brown)", + "GiftDropId": 11927, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11927, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,192ba73d-6990-42da-8fe0-914c2a7181eb,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Black, Gold)", + "GiftDropId": 11928, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11928, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Yellow)", + "GiftDropId": 11929, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11929, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,624c85e5-095a-48b6-85fb-c9bbade19a8d,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Cherry)", + "GiftDropId": 11930, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11930, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,BW5oLDA36EK9nLzTm7xViQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Pink)", + "GiftDropId": 11931, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11931, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,K5vPqD3BrEuODRDzFdC6Hw,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Black, Silver)", + "GiftDropId": 11932, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11932, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,ODOnI3iYoEKrlQfFabbvoQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Green)", + "GiftDropId": 11933, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11933, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,teVKVbVEsEyqOSuRdqHQzA,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (White)", + "GiftDropId": 11934, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11934, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba96458f-84c3-42b7-acc0-e4d96f31ec84,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeletor Hood", + "GiftDropId": 11935, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11935, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Red)", + "GiftDropId": 11936, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11936, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,4c26d1e7-2382-4478-b9c4-a068ed01a607,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Yellow)", + "GiftDropId": 11937, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11937, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,891d902e-3257-4a8c-9001-858046007997,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (White)", + "GiftDropId": 11938, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11938, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,uahcQNh3IEiooPFq-SQi5w,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Black)", + "GiftDropId": 11939, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11939, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb6ee7fa-7a31-4a16-a97e-be6eac42c595,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pioneer Dress", + "GiftDropId": 11940, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11940, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb8602d4-f91f-4e35-9c88-1cdf3a04ff0a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bee Body", + "GiftDropId": 11941, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11941, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc0a1c68-2eb5-4dde-a242-c4e19940699c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Monkey Backpack", + "GiftDropId": 11942, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11942, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Mastermind)", + "GiftDropId": 11943, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11943, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,4RH8_Z1mqU-JIVvx31wOsA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Outlaw)", + "GiftDropId": 11944, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11944, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,QJSPgq2KXEOWNynY8uqQvA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Rogue)", + "GiftDropId": 11945, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11945, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,RBRFHN8_rkuImbyDAfcHWw,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Spy)", + "GiftDropId": 11946, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11946, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Hat", + "GiftDropId": 11947, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11947, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,g8h43tuiN0CCifW9XbnFhQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Rose Hat", + "GiftDropId": 11948, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11948, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,KUSVg33DSUK8aYXxJzOTdA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Hat (Black)", + "GiftDropId": 11949, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11949, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,P8w3-vcH5kaHaMEsFsKDjw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Rose Hat", + "GiftDropId": 11950, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11950, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,sA0KRBVMikOo6BBfk0dC1g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Rose Hat", + "GiftDropId": 11951, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11951, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,T0PMM2iQqkCCMZoznrdkug", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Rose Hat", + "GiftDropId": 11952, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11952, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses", + "GiftDropId": 11953, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11953, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,2pnfLqkYZ0-GbpeE8g0vVA,hGtyDIIWckGoRgCaSG6GBw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses (Black)", + "GiftDropId": 11954, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11954, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,t_y2xmFYLU2v6Jb6PX6v_g,4J9GPTKjjUOjyLVPmJyxWg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses (Tortoiseshell)", + "GiftDropId": 11955, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11955, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,vw2iLomK9keTfEWsqJrmhA,hGtyDIIWckGoRgCaSG6GBw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses (White)", + "GiftDropId": 11956, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11956, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Skater Shirt", + "GiftDropId": 11957, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11957, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,7IYi1twr6kO3xJiQo5CB4w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skater Fit (Checkerboard)", + "GiftDropId": 11958, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11958, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,MVXeErsEE06KenrYaEm7Kg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Skater Shirt", + "GiftDropId": 11959, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11959, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,qwQ8OV3E60WG_VEl9ECHoA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Skater Shirt", + "GiftDropId": 11960, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11960, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,y6NrbfS070WvASkKmPK-9Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Burgundy Skater Shirt", + "GiftDropId": 11961, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11961, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Puffer Vest ", + "GiftDropId": 11962, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11962, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,ZLaDizWS7kOmnHVGlLLJ-g,TUZ21v0C9UK9GPsfbRwpsw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel Vest", + "GiftDropId": 11963, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11963, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "beee4e09-9d93-4023-bc78-c5dc551a0ab8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nutcracker Suit", + "GiftDropId": 11964, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11964, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Gold)", + "GiftDropId": 11965, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11965, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,ERnUPsyT6kuEnIRZF8zPwg,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Silver)", + "GiftDropId": 11966, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11966, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,iaDL2im4lkCXUo0NWM-F3g,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Bronze)", + "GiftDropId": 11967, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11967, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Sash (Green)", + "GiftDropId": 11968, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11968, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,639f5e2c-6fbd-4ab4-aa10-7772e0932798,66cc536d-8cb5-4262-b7f0-49a33b97ea10,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Sash (Brown)", + "GiftDropId": 11969, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11969, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,67490e3b-0f9d-4bf8-84fb-54957b981c8c,66cc536d-8cb5-4262-b7f0-49a33b97ea10,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Sash (Blue)", + "GiftDropId": 11970, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11970, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,b520f3bc-599a-498c-8a4f-97cc25aa741f,66cc536d-8cb5-4262-b7f0-49a33b97ea10,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Sash (Red)", + "GiftDropId": 11971, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11971, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat", + "GiftDropId": 11972, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11972, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,Dvwz4YRu_ES_rl94y6FNBA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat (Grey)", + "GiftDropId": 11973, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11973, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,VyqdOGaUnEa8WzccUIn48w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat (Red)", + "GiftDropId": 11974, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11974, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,YBpBFNAFGEunM5GX5lFxHg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat (Brown)", + "GiftDropId": 11975, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11975, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BJ2XrGvl40iIl28IbTfbKg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Ponytail", + "GiftDropId": 11976, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11976, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BqpRbr_T1kO_YJqB1787kA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cupid Quiver", + "GiftDropId": 11977, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11977, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BR0mZKsKaE-t4R8CzEwuyg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thrilling Cuff (Red) - Available again until 10/15", + "GiftDropId": 11978, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11978, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BR0mZKsKaE-t4R8CzEwuyg,B1IotYmwbkiUAfdZiqzq8w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thriller Wrists (Orange)", + "GiftDropId": 11979, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11979, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BR0mZKsKaE-t4R8CzEwuyg,Q1knTl-n-EeAUwotFspNew,FHB5XHwNWka7aUt5km3LNg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thrilling Cuff (Blue) - Available again until 10/15", + "GiftDropId": 11980, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11980, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Blue)", + "GiftDropId": 11981, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11981, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,1DQi3Wt8ukK2gWvl0zJnkw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Green)", + "GiftDropId": 11982, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11982, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,76CA_KCr806y1FA35m-YTg,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Orange)", + "GiftDropId": 11983, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11983, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,7B7vpnMTfkGLcMdHCZ_kWA,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Red)", + "GiftDropId": 11984, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11984, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,nO-YacKU1kmLjTFAAqNeYQ,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Yellow)", + "GiftDropId": 11985, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11985, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,u_H8YUV4MEGNGh5h9ckm_w,a3OlD7iI_EqurYq_RIQCvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Gold)", + "GiftDropId": 11986, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "For earning $1000", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11986, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,ZpcM5H2Q1UCt0hh82nSu9w,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Pink)", + "GiftDropId": 11987, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11987, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Green)", + "GiftDropId": 11988, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11988, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Red)", + "GiftDropId": 11989, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11989, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,61VZkFjB402brzWm4UsftA,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Grey)", + "GiftDropId": 11990, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11990, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Yellow)", + "GiftDropId": 11991, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11991, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9ad37173-e640-4b9e-a474-716d482b73d2,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Black)", + "GiftDropId": 11992, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11992, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9b35ae52-febe-486a-8557-ec7190a9756e,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Tan)", + "GiftDropId": 11993, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11993, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,lgqLGi01o02ZFC9Xs5Ofdg,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Blue)", + "GiftDropId": 11994, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11994, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c161dc73-6ce3-49c4-8d15-45e6911f84e4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sea Captain Beard", + "GiftDropId": 11995, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11995, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c2362f96-0a73-451b-9a85-46410eefd2ce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chess Knight Hat", + "GiftDropId": 11996, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11996, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c2d22328-b41a-4e53-9b1e-814e84b86d15,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Kite", + "GiftDropId": 11997, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11997, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c2df65e0-2e85-4666-bea1-e8efa654b155,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gaia Clip (Sprout)*", + "GiftDropId": 11998, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "First stage of growth", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11998, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Triton)", + "GiftDropId": 11999, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11999, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,CahBzgN3D0y46AQsvGC14A,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Leviathan)", + "GiftDropId": 12000, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12000, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,Su7kiW24d0KapNns96JoFQ,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Kraken)", + "GiftDropId": 12001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Holiday Elf Costume", + "GiftDropId": 12002, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12002, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,8k3q_1d_-kSBzNLCl1HQhw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elf Shirt (Black)", + "GiftDropId": 12003, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12003, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,Hd5IIMd7VUqndR_og0zxPg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elf Shirt (Red)", + "GiftDropId": 12004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,i3pwJQoNDkO_68pQ_3Y0tw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elf Shirt (Pink)", + "GiftDropId": 12005, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12005, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,YwossyXZNEm3OPWwXsyTAg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elf Shirt (White)", + "GiftDropId": 12006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Beige)", + "GiftDropId": 12007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,irw2uj4c2Eil0ndPCTqodQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Yellow)", + "GiftDropId": 12008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,pPZ3sDw3B06mKiYsAiAt9w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (White)", + "GiftDropId": 12010, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12010, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,sO8e2epLrUud243Xi9odXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Orange)", + "GiftDropId": 12011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,s-QTVT5eTECKHL9FnHFCAQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Blue)", + "GiftDropId": 12012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,UnHAtXkd2kCdamzw6B3Mvg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Turquoise)", + "GiftDropId": 12013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c45ed7b8-99bd-4a4b-a9ff-e16edf5d7a18,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Pony Hair", + "GiftDropId": 12014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Trench Coat", + "GiftDropId": 12015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,pCEBoSP2pESLl9ih-J-55g,8SzXFoWD8k20cekFe6cLKg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Trench Coat (White)", + "GiftDropId": 12016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Blue)", + "GiftDropId": 12017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,apSQiQ1eO0mEzRsbugeu9w,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Green)", + "GiftDropId": 12018, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12018, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,iufpnteVCEiiZu_m-yPovQ,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Purple)", + "GiftDropId": 12019, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12019, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,VpqHNpPiY0CfRJEjRRM-mw,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Red)", + "GiftDropId": 12020, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12020, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,Z1F9rjKqCE-Hd2-Ip5g3gA,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Black)", + "GiftDropId": 12021, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12021, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Monarch)", + "GiftDropId": 12022, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12022, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,1qHXl55Qn0qSb1gAhr8Wjg,GlB_scM-5kuc4A5TmGe6Yw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Frontier Bluebottle)", + "GiftDropId": 12023, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12023, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,nODTglESMEC9tBY1k-LrsA,Do__oD53x0-dNtVeHsr4yA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Midnight Gossamer)", + "GiftDropId": 12024, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12024, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,PTqpWqqU9k--lNlRrmlVbA,yViVKOLHc0qLiPw9Oy1Obg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Candy Agrias)", + "GiftDropId": 12025, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12025, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c51780fd-9eb5-4bc0-9da0-34ab22d800df,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glowstick Bracelet", + "GiftDropId": 12026, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12026, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c51877eb-efda-4a04-8394-092637e2a9bf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Buckateers)", + "GiftDropId": 12027, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12027, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c65a94e6-7475-4030-8fcd-9ce25852ff7c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Arrow Through Head Hat", + "GiftDropId": 12032, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12032, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Umbrella Hat (Rainbow)", + "GiftDropId": 12033, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12033, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,3L-AGgM50kCCz2V3UJtErA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Umbrella Hat (Ladybug)", + "GiftDropId": 12034, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12034, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,Ii2WNQxqtUeoIfGItUkVbQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Olden Umbrella Hat", + "GiftDropId": 12035, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12035, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,U-KT3nJlW0-JT8GSQuQXhg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Umbrella Hat (Mushroom)", + "GiftDropId": 12036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Black)", + "GiftDropId": 12037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Grey)", + "GiftDropId": 12039, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12039, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,31jelNWFyk6FlWt4HyPAlw,9zGwmle_yk25V-KnC_PJEg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Hearts)", + "GiftDropId": 12040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,3svqbYmGt0uyVWnx7vJNmw,iLo1YhFY-06HNWgM6gkB7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Neighborly)", + "GiftDropId": 12041, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12041, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Yellow)", + "GiftDropId": 12042, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12042, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (White)", + "GiftDropId": 12043, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12043, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Red)", + "GiftDropId": 12044, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12044, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Blue)", + "GiftDropId": 12045, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12045, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,W4a144so90eRzCojUnDowA,pHw_MghIYUazSFve6L237w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Candy Cane)", + "GiftDropId": 12046, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12046, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glasses (Teal)", + "GiftDropId": 12047, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12047, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,5H0I1anlkkuUYIM28_ZOlA,l_iJLV14q0eNgOsOI1u0pw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glasses (Purple)", + "GiftDropId": 12048, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12048, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,9tZq7Xvfj0WhhLBAuAacxA,l_iJLV14q0eNgOsOI1u0pw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glasses (Blue)", + "GiftDropId": 12049, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12049, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,BqNgpjP7a0qmm3I3DNbKLA,l_iJLV14q0eNgOsOI1u0pw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glasses (Yellow)", + "GiftDropId": 12050, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12050, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,dRQI80Qn4E-kzhPJoW66MA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Black)", + "GiftDropId": 12051, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12051, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,F1IV-zZ22kKtXkr2pHp_YQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Seafoam)", + "GiftDropId": 12052, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12052, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,FuMUQFSnnU6awB-vPaeuZw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Bubble Gum)", + "GiftDropId": 12053, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12053, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,OBcu3bf1NEio_7t9smqGag", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Amber)", + "GiftDropId": 12054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,-OgDdlvL9EyzeiA50YY5kw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Charcoal)", + "GiftDropId": 12055, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12055, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,Sad0HQX_Y0eYTx1qqgxKwQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Sunrise)", + "GiftDropId": 12056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c7c85554-e118-4433-8d6b-b61a2971e045,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Floaties", + "GiftDropId": 12057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c855dcc3-96cb-470d-b159-d37a025a47d1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dutch Braid Hair", + "GiftDropId": 12058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c859a371-5d34-4e53-a96f-a6f7f3377aba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero's Quiver", + "GiftDropId": 12059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c859a371-5d34-4e53-a96f-a6f7f3377aba,aMOwLebcBU6SuPigtovUYg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Future Quiver", + "GiftDropId": 12060, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12060, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c87239ca-a255-4b13-bbc5-1b38236fb4cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Viking Helmet", + "GiftDropId": 12061, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12061, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8a97aeb-e8dc-40ba-b6bc-a7c7be907381,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Feathered Hair", + "GiftDropId": 12062, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12062, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shell Necklace", + "GiftDropId": 12063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8d2503e-5d43-4828-8d1d-40c64a577753,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Harmonica Necklace", + "GiftDropId": 12064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Da Bomb)", + "GiftDropId": 12065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,6ZtRAbD-xUufWNLCrlrrCg,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Chill)", + "GiftDropId": 12066, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12066, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,ulOBBvFEJ0ioFA1qmL390A,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Aiight)", + "GiftDropId": 12067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,V4CVhCB8eU-nrfYgticVOA,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Booyah)", + "GiftDropId": 12068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Purple)", + "GiftDropId": 12069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,AC3zfm38JEyBZWuXDh4Ukg,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Black)", + "GiftDropId": 12070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,dyEaPloE8kazWC7Zblv8uQ,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Yellow)", + "GiftDropId": 12071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,RfZNDPUok0WyQEa3Ko08ow,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Blue)", + "GiftDropId": 12072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,sX0ZZDcCUkyFSJISfvq0vg,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Orange)", + "GiftDropId": 12073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,TnEDe1QoMUCUdqPL_7CxTA,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Green)", + "GiftDropId": 12074, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12074, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "caf1e229-9660-4abf-8074-f706709f4097,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overalls", + "GiftDropId": 12075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cb061cf3-05fb-4494-be5e-091ddb080271,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Pop Rock Gloves", + "GiftDropId": 12076, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12076, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones", + "GiftDropId": 12077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,1Cbw9819NE-Fmv1NQIYKow,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (Emissive, Red)", + "GiftDropId": 12079, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12079, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,5JQPQ2JBUkSFyXeYWvr4tA,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (Orange)", + "GiftDropId": 12080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,omnSzDLD5ESCU6ndropzPQ,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (Purple)", + "GiftDropId": 12083, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "RecCon 2021 exclusive", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12083, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,pY3RdcA2lU6H5rVXp8csfg,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (Blue)", + "GiftDropId": 12084, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12084, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,VtsT6sKDYE24bAU-PKkIDQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (S.)*", + "GiftDropId": 12085, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12085, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbN5e-t_jEKa4hzir5JAxQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shades", + "GiftDropId": 12086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cc30f7f7-6c12-4a96-acfd-11aec984c2e4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Outlaw Vest", + "GiftDropId": 12087, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12087, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cc96f8a5-bc5b-4f89-83b7-ecd53905ada7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beard (Thick)", + "GiftDropId": 12088, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12088, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cca7ab3d-5609-4700-92fd-3280fcea9b77,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Stache", + "GiftDropId": 12089, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12089, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cd77c8ed-ab60-4f42-9bee-0141c7e3e626,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Horseshoe Necklace", + "GiftDropId": 12090, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12090, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Goggles", + "GiftDropId": 12091, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12091, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,mZ2ASMrs80axStLp9g1enA,dGzmSibucEe7i1HD7lPcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Goggles (Silver)", + "GiftDropId": 12092, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12092, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce250e13-8137-4f62-9e52-2b1cebe7d0ad,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Hawk Hair", + "GiftDropId": 12093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Wrist (White)", + "GiftDropId": 12094, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12094, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,bb01b51e-a95f-441e-8c52-abc3aeed7145,f7c7d05f-5454-445a-af38-25f110bd204a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Wrist (Black)", + "GiftDropId": 12095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cea5c141-32d8-4dae-80d9-6fb74834a79c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Farmer Hat", + "GiftDropId": 12096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cec9cfac-a45b-4edb-b26d-7453cc2bfaf2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Froggy Headband", + "GiftDropId": 12097, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12097, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Blue)", + "GiftDropId": 12098, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12098, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,6WJKUeFNn0amYNvKMxijcw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Forbidden Purple)", + "GiftDropId": 12099, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12099, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,hNFdYhoJYk24MqU2GhQXlw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Yellow)", + "GiftDropId": 12100, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12100, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,OIfcKSEil0uHgT5baEFuOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (White)", + "GiftDropId": 12101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,u0bLCSxcA0yDHC29XnLZOg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Science Green)", + "GiftDropId": 12102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,VPvezA1A8UKt2qNoNRW9dg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Red)", + "GiftDropId": 12103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gathered Shirt (White)", + "GiftDropId": 12104, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12104, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,8lwfuCRnU0291wqwgTwgRQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Riveter Shirt", + "GiftDropId": 12105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrap Skirt", + "GiftDropId": 12106, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12106, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,B5WV1io6fkaAJdm4GbzM_Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Monarch Butterfly Wrap Skirt", + "GiftDropId": 12107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,bNWm_2_VE0-4fdcF6S0aIA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Butterfly Wrap Skirt", + "GiftDropId": 12108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,q9Nganq9nUaV3zuvx9s3nQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wrap Skirt (Blue)", + "GiftDropId": 12109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,y8yTimlV2EWhJMU-Ay9e8A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mint Butterfly Wrap Skirt", + "GiftDropId": 12110, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12110, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf360f73-b349-44e7-b5c1-f175a0f5e70d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt of Elseware*", + "GiftDropId": 12111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf360f73-b349-44e7-b5c1-f175a0f5e70d,zQgy7h3CO0a02zJfhA9wXA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt of Elseware (Shadowy Illusion)*", + "GiftDropId": 12112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cfce35b4-d182-4505-a631-5a8e5011f550,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Pop Rock Earrings", + "GiftDropId": 12113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cfe276b9-1bdf-4c41-9e86-1a0215c6c5a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ascot", + "GiftDropId": 12114, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12114, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Turkey)", + "GiftDropId": 12115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,032pE8s9Ik-2CImFVDrSqg,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Blue)", + "GiftDropId": 12116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,8xjU4GQ4OkaqGyad-ypwtw,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Red)", + "GiftDropId": 12117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,FC8ZFBPt4EyTe7IYbv2Tpg,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Pink)", + "GiftDropId": 12118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,GDvaUU10-EKh3pKUQ9tnag,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Runway)", + "GiftDropId": 12119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,ghM-uFq5-0Ci38AOHa9zZA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Deadwood)", + "GiftDropId": 12120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,Gtq8yRlt1UeFW8U-sc7FiA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Brooklyn)", + "GiftDropId": 12121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,-k9_-2onrEG407or8t1RFw,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Hambone)", + "GiftDropId": 12122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,kLyM-6otSUy2ql5SEmnF9Q,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Spared)", + "GiftDropId": 12123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,KqjQ1xRpokGLKp9GVN1EFA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Striker)", + "GiftDropId": 12124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,M4765UHzsUeNTwH-Pcxp1g,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Green)", + "GiftDropId": 12125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,XrSL-v2MbkK0md-FMOweOA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Sleeper)", + "GiftDropId": 12126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yrQCLXiqRUSwnuQRYX2Rsw,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Lily)", + "GiftDropId": 12127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yZR5aX3gQ0WpRUT6cfK1cA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Split)", + "GiftDropId": 12128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CTcrvbo3OEepIV4oW8bx4w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Receding Hair", + "GiftDropId": 12129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Shirt (Crew Neck, White)", + "GiftDropId": 12130, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12130, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,14afd295-bcd0-4595-80dc-d477618b9ab9,2ee3944d-e9fb-4959-973e-570a7fc6cc57,a74e6c0d-1300-4928-9141-977a711b71c4", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "SFVRCC Promo Shirt", + "GiftDropId": 12131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,5864d23d-1a86-40a6-a52c-46ee670e4508,2ee3944d-e9fb-4959-973e-570a7fc6cc57,167ba0d4-4fac-4143-b5ae-1dbd8e02dc76", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2016 Shirt", + "GiftDropId": 12134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,6kPcLZtEqU2Hs4yBFvc_sA,0440f08f-ef1d-49d8-942b-523056e8bb45,br9hzhDoZUmIevgl7SJkmg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2019 Shirt", + "GiftDropId": 12136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,6kPcLZtEqU2Hs4yBFvc_sA,0440f08f-ef1d-49d8-942b-523056e8bb45,NxMm0sSBdUatynU16o0_Zw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2018 Shirt", + "GiftDropId": 12137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,815138e6-b0dc-459c-9538-20f5bbd37d6b,0440f08f-ef1d-49d8-942b-523056e8bb45,75162f12-44e7-499f-bc6c-9b0612e9164b", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2017 Shirt", + "GiftDropId": 12138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,922f229c-124f-4f07-b4e3-19138420ca19,2ee3944d-e9fb-4959-973e-570a7fc6cc57,ceb07e4f-50a9-4ed0-b50b-c59d92ba66b5", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthday Shirt (1st)", + "GiftDropId": 12140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,95e4cc30-cb68-473d-a395-feadf5b51512,0440f08f-ef1d-49d8-942b-523056e8bb45,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room T-Shirt (Crew Neck, Orange)\t", + "GiftDropId": 12143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,95e4cc30-cb68-473d-a395-feadf5b51512,0440f08f-ef1d-49d8-942b-523056e8bb45,0c496f32-0011-4c4d-9778-59446f70c032", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room T-Shirt (Crew Neck, Orange)", + "GiftDropId": 12144, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12144, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,ba6b6e1a-a09a-4ba0-9523-552869f03336,0440f08f-ef1d-49d8-942b-523056e8bb45,d461ca71-45c9-415e-8e09-ba93e8d73450", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Happy Tree Shirt (Blue, Contest)", + "GiftDropId": 12145, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12145, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,d3-sxPTJOk2rKo-Jgy3wvw,0440f08f-ef1d-49d8-942b-523056e8bb45,v0GsPFC7cU-_JNG4-ERfog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest T-Shirt (Red)", + "GiftDropId": 12150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,eb1vYTP_KEGQH-f33_whQg,0440f08f-ef1d-49d8-942b-523056e8bb45,t2do8WSejE-Y0aiEirKw9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest Shirt Reward (Green)", + "GiftDropId": 12152, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12152, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,evgH6VWUgkKJNews32hUxQ,0440f08f-ef1d-49d8-942b-523056e8bb45,v0GsPFC7cU-_JNG4-ERfog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest Shirt Reward (Orange)", + "GiftDropId": 12153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,fwIgUAM_C0WhKds0O6DyPg,0440f08f-ef1d-49d8-942b-523056e8bb45,fJVxsLWuTESd-2xTCJPZ2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Recollage Shirt (Pink, 2D Art Contest)", + "GiftDropId": 12156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,LrQ1z-mTHE2vIePBwm8l_Q,0440f08f-ef1d-49d8-942b-523056e8bb45,omS7gF10C0ec0ozEoJGJXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Recollage Shirt (Blue, 2D Art Contest)", + "GiftDropId": 12161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,owoIOIEM70e6WxnYdlKYWQ,0440f08f-ef1d-49d8-942b-523056e8bb45,t2do8WSejE-Y0aiEirKw9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest T-Shirt (Purple)", + "GiftDropId": 12164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,TtncjvYcK0qHqWN-IMMoqg,0440f08f-ef1d-49d8-942b-523056e8bb45,hHhjZeLcaUGN1OyFoYHznw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Happy Tree Shirt (Purple, 2019 2D Art Contest)", + "GiftDropId": 12166, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12166, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,TuAjeDmPuUmFr_ESx4q6WA,0440f08f-ef1d-49d8-942b-523056e8bb45,AXtRUZcYWU6g1ZtM-L4vfQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest T-Shirt (Black)", + "GiftDropId": 12167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,v12eJ8louE-cW7-pCGzVLQ,0440f08f-ef1d-49d8-942b-523056e8bb45,v0GsPFC7cU-_JNG4-ERfog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest T-Shirt (Blue)", + "GiftDropId": 12169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,ZNPzHmrU6kGVQW7Q5ei03w,0440f08f-ef1d-49d8-942b-523056e8bb45,fJVxsLWuTESd-2xTCJPZ2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Recollage Shirt (Yellow, 2D Art Contest)\t", + "GiftDropId": 12171, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12171, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d12e5738-00c7-47e7-9334-8399eec5aa89,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Mystery Contest)", + "GiftDropId": 12172, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12172, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d15139de-5e57-423b-b8da-335ad7a4df5a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Hidden Worlds Contest)", + "GiftDropId": 12173, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12173, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d1c4f1aa-3acb-42ca-bfe7-5e2a1e863f95,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Microphone Headphones", + "GiftDropId": 12174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d1c4f1aa-3acb-42ca-bfe7-5e2a1e863f95,u2nh8EAZT02TxPTWVl59UA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Headset (Invasion)", + "GiftDropId": 12176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Green)", + "GiftDropId": 12178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Red)", + "GiftDropId": 12179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,61VZkFjB402brzWm4UsftA,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Grey)", + "GiftDropId": 12180, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12180, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,6e152cc7-e93a-4408-8092-236db420b680,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Yellow)", + "GiftDropId": 12181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9ad37173-e640-4b9e-a474-716d482b73d2,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Black)", + "GiftDropId": 12182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9b35ae52-febe-486a-8557-ec7190a9756e,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Tan)", + "GiftDropId": 12183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,lgqLGi01o02ZFC9Xs5Ofdg,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Blue)", + "GiftDropId": 12184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robot Gauntlets", + "GiftDropId": 12185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,BoaDgMfzEEycbxVmWneHNA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alloy Power Gloves (Black)", + "GiftDropId": 12186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,gIDTSqjSvECgxxd4YtOZIA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alloy Power Gloves (Red)", + "GiftDropId": 12187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3b8bd7b-ca9a-4f5d-b115-3659dc294a03,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Green)", + "GiftDropId": 12188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dodgeball Shirt (Purple)", + "GiftDropId": 12189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,0ba92db2-690a-44ce-92f4-130e9503b6c1,944d934d-5e21-42d7-8196-fff9a81ee469,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dodgeball Shirt (Teal)", + "GiftDropId": 12190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,4a85c181-92fe-47a5-925e-05f0ccb25006,944d934d-5e21-42d7-8196-fff9a81ee469,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dodgeball Shirt (Orange)", + "GiftDropId": 12191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d4f86b2b-0fa3-4264-9eac-cf15b62463bd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Shades", + "GiftDropId": 12192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d52ff2bb-d396-478d-8153-2aa845feb306,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hiker Hat", + "GiftDropId": 12193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d57cf97e-b5d2-4e47-8231-a226a161f6e3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Pink)", + "GiftDropId": 12194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Arizona Cardinals Hat", + "GiftDropId": 12195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,_egTT9EA-UK0aLkn_QnWFA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Carolina Panthers Hat", + "GiftDropId": 12196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,-0DfEFcbNEaNI2uvfHF9qA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Minnesota Vikings Hat", + "GiftDropId": 12197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,10nSNj7eRE6XwS9y2OvC2g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Chicago Bears Hat", + "GiftDropId": 12198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,1nFX70Rqo0-qQo2M_Z1KCg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Houston Texans Hat", + "GiftDropId": 12199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,27Fg--SzD0ertvGEv1Jgsw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Las Vegas Raiders Hat", + "GiftDropId": 12200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,3m5Q5crrHUGZJ9_GuxubQw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Tampa Bay Buccaneers Hat", + "GiftDropId": 12201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,4viU0bMT1UuasZHD8euFKg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Philadelphia Eagles Hat", + "GiftDropId": 12202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,5fjPcf4xQkSEYn3T-f8xLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Detroit Lions Hat", + "GiftDropId": 12203, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12203, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,6EjRVha2i0mCUVLaL_em_w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Los Angeles Chargers Hat", + "GiftDropId": 12204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,6JY7l1gtpE631NTmT6xv3A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Kansas City Chiefs Hat", + "GiftDropId": 12205, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12205, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,cOyJcjGyp0miaMLAOpz0FA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Indianapolis Colts Hat", + "GiftDropId": 12206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,DVnSVZcj8kyLr1DXRu7kzg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New England Patriots Hat", + "GiftDropId": 12207, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12207, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,EtgbhY9a_EqO4j86Al9Kpw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Los Angeles Rams Hat", + "GiftDropId": 12208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,FnezvbcGD0-oyFOTkpUo7g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Washington Commanders Hat", + "GiftDropId": 12209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,FokpgM8R5EuXZwe89T78yA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Cleveland Browns Hat", + "GiftDropId": 12210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,jYJehFukzUCHKzWQAaM3uw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New York Jets Hat", + "GiftDropId": 12211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,kjDg5GM1b0iepa52BX5wbg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Baltimore Ravens Hat", + "GiftDropId": 12212, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12212, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,nIUjGqY8L0u0ZbX45b4PUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Jacksonville Jaguars Hat", + "GiftDropId": 12213, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12213, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,oyvOdKXeGU65V6sKhhb0qg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Miami Dolphins Hat", + "GiftDropId": 12214, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12214, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,QD-SRdKijU2RVu60TcU_jw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Seattle Seahawks Hat", + "GiftDropId": 12215, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12215, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,QgECbFDwyk24sI-e_fXy5w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New Orleans Saints Hat", + "GiftDropId": 12216, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12216, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,q-Gjg0zzI0mTHxjn8wi5HQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL San Francisco 49ers Hat", + "GiftDropId": 12217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,sjY_XUbXAk6h2TGnjBGDeQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Green Bay Packers Hat", + "GiftDropId": 12218, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12218, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,TtthSwdIq0CuSNOKDLsldg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Denver Broncos Hat", + "GiftDropId": 12219, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12219, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,v0nZrzbIMEi3AaGuNjmwDw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Dallas Cowboys Hat", + "GiftDropId": 12220, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12220, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,VxmHqppE6UWiXVBXL2QvTA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Atlanta Falcons Hat", + "GiftDropId": 12221, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12221, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,WlfHWDcnO0SBT5wTjEPSmw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Buffalo Bills Hat", + "GiftDropId": 12222, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12222, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,XNTUcdaSVEuS3rbzwIwYNg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Tennessee Titans Hat", + "GiftDropId": 12223, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12223, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,XPBWTcpQ9kaS0mabpdvYhw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Cincinnati Bengals Hat", + "GiftDropId": 12224, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12224, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,YePtDvVnOk6cZkDBVIv-PA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Pittsburgh Steelers Hat", + "GiftDropId": 12225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,zMWcGYnGdk6lVqVNuFwJHw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New York Giants Hat", + "GiftDropId": 12226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d7410e54-5193-48b9-b5c9-06e4439dd924,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Keytar (Pink)*", + "GiftDropId": 12231, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12231, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d7410e54-5193-48b9-b5c9-06e4439dd924,0aNp_2sWHUS_08TMe-_AzQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Keytar (Purple)*", + "GiftDropId": 12232, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12232, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d7410e54-5193-48b9-b5c9-06e4439dd924,njOH4bbntk6THrxbd9TDDA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Keytar (Orange)*", + "GiftDropId": 12233, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12233, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Yellow)", + "GiftDropId": 12234, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12234, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,026ca50e-3a81-43cf-87f5-950687b7bbdd,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Pink)", + "GiftDropId": 12235, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12235, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,3JrW3FFUvEe6HZ9VjOVjMw,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Pink)", + "GiftDropId": 12236, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12236, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,6584dada-499e-4d7c-958d-466955b20640,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Blue)", + "GiftDropId": 12237, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12237, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,Ijf-j7EgEkGYOKo9SQNLRw,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Red)", + "GiftDropId": 12238, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12238, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,J7l1YwWjqkutybwykwih7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Squid Teal)", + "GiftDropId": 12239, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12239, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,jeEWPFvzaEGmXaUrxTFvwg,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Red)", + "GiftDropId": 12240, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12240, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,NjCLn5A5h0-V8jB72etCNQ,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Black)", + "GiftDropId": 12241, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12241, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,OT5APcpbpEiMNNah8n4Txw,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Blue)", + "GiftDropId": 12242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,t2fOeVWloUOKDlIaf4Sxnw,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Yellow)", + "GiftDropId": 12243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,uUOO-k5KS0mU7B5BLaOpnA,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Black)", + "GiftDropId": 12244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d7730a9e-78a1-4356-bc09-6b066615850b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Afro Updo Hair", + "GiftDropId": 12245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8280c0c-d803-4513-be10-a0ba96d8821e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowhawk Hair", + "GiftDropId": 12246, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12246, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d834be2b-b107-49aa-b0ec-b54bdb4c61aa,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Iso Helmet (Invasion)", + "GiftDropId": 12247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d84c0ff9-8fbe-4ed8-abf3-7996e81888ab,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Large Afro Hair", + "GiftDropId": 12248, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12248, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d86e2e65-5d87-466d-b885-8c52ac2eeeb0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (High Seas Contest)", + "GiftDropId": 12249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Cuffs (Blue)", + "GiftDropId": 12250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,_4mk8E4PUEGf_3SPuFUy2g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Cuffs (Green)", + "GiftDropId": 12251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,aO5Q4BPpuU-bsNavGii40A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Cuffs (Purple)", + "GiftDropId": 12253, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12253, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,MVhTW78G_E6z2mY0Y5ZnAA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Cuffs (Red)", + "GiftDropId": 12254, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12254, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Black)", + "GiftDropId": 12255, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12255, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,178c6beb-c737-434c-a53b-d14f438f6a98,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Blue)", + "GiftDropId": 12256, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12256, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,2913bd93-bf35-4bdf-b83a-d40a10213adc,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Red)", + "GiftDropId": 12257, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12257, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d960b47d-f8bd-4c2e-813c-a6a09876ea18,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Hat", + "GiftDropId": 12258, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12258, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d960b47d-f8bd-4c2e-813c-a6a09876ea18,TZ3oQBp_3kWY4Vzscgv5Wg,xCpdHx1iM06Gg0tYoGv0DA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Hat (Creators Contest)", + "GiftDropId": 12259, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12259, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c025e1-561b-4997-9f69-c96eb3c00786,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Warmers", + "GiftDropId": 12260, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12260, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Earrings", + "GiftDropId": 12261, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12261, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,10nOM4HBRU-e7Bb05SrtLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Rose Earrings", + "GiftDropId": 12262, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12262, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,4ve7AWD5pkGjvmtC6JRdiw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Earrings (Black)", + "GiftDropId": 12263, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12263, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,F3m52YaKyEqwbgUyPVfFxQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Earrings (Orange)", + "GiftDropId": 12264, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12264, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da4e7b34-2095-4a9e-801e-4f409039e0dd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Buzz Cut Hair", + "GiftDropId": 12265, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12265, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Blue)", + "GiftDropId": 12266, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12266, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c5deba2a-6e35-4b13-8e94-8ba5457f39df,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Yellow)", + "GiftDropId": 12267, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12267, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c9589974-c261-485e-b571-cb2f34fb178f,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Green)", + "GiftDropId": 12268, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12268, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,d6823e01-69f0-4f85-b94a-74894356a2cf,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Maroon)", + "GiftDropId": 12269, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12269, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,da6d0ced-3d43-4878-a868-925f2ed6fd5b,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Pink)", + "GiftDropId": 12270, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12270, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,e13cf33d-7588-4e2e-955e-f0a29d6380b7,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Brown)", + "GiftDropId": 12271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dbecb1a5-f342-4017-b5c8-9cdfcd1254ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Armor (Jade)", + "GiftDropId": 12272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dbecb1a5-f342-4017-b5c8-9cdfcd1254ec,c7wiHNZ-X0KazEW4cY9PeA,5fVeR6S6R0yo_NcT-TB1lQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Armor (Red, Gold)", + "GiftDropId": 12273, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12273, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Red)", + "GiftDropId": 12274, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12274, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,631c9015-2a00-47ea-bb35-465a2ddbca5d,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Black)", + "GiftDropId": 12275, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12275, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,7f9cb939-36a4-40da-8337-025e1d7bf8e5,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Green)", + "GiftDropId": 12276, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12276, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves", + "GiftDropId": 12277, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12277, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,csLWYuunH0K9Ij1q1FoBsg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves (Green)", + "GiftDropId": 12279, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12279, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,dudShaXMYkaIZdZfyleoXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves (White)", + "GiftDropId": 12280, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12280, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,sP8lTqgdk0WyuwQczT_ijg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves (Blue)", + "GiftDropId": 12281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,Zf0z5Ghkwk-QJJq4u7Fjww", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves (Pink)", + "GiftDropId": 12282, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12282, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Blue, White)", + "GiftDropId": 12283, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12283, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,_ycDQ6RcyEGAntVlSDpPeA,6UBZuZQBG0eZtNmty2IGdA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Candy Cane)", + "GiftDropId": 12284, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12284, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,05ac07e1-67f0-486c-abf5-a62866475abb,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Black, Cream)", + "GiftDropId": 12285, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12285, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,0ffad843-d6c9-425a-8686-7217009c867e,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Green, Black)", + "GiftDropId": 12286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,272fe8eb-5061-4729-a7a8-414ff667a82f,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Grey, White)", + "GiftDropId": 12287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,6f2e74bf-1e95-463d-97db-d5d1a53b2c28,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Black, White)", + "GiftDropId": 12288, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12288, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,7WrSbK4Ml0K2z-ig5HIUCw,9skD_xxLq0mpfP13f9n8hQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Shamrock)", + "GiftDropId": 12289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,9374bf66-2ee5-493b-8439-efce4b201904,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Grey, Black)", + "GiftDropId": 12290, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12290, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,uCA4tnv9Mk2mX-NnFlj2Mg,NvlKJFz4IkKDliVOJKJYhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hallow's Blazer (Pinstripe)", + "GiftDropId": 12291, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Available until 10/25", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12291, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,YlgQOY1VJUuGzYxoTYAqGg,jhQ23U8Pmk2K2wfBdrEWNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowflake Blazer", + "GiftDropId": 12292, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12292, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de19b239-3ed0-4f03-acb6-da69b5aa52ea,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Vest", + "GiftDropId": 12293, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12293, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Suit", + "GiftDropId": 12295, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12295, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,2jj5lxx6Gka5U6j0cWjN5w,HQnd9m0Wi0upaXRNsE5HPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Suit (Movie Magic Contest)", + "GiftDropId": 12296, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12296, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Hoodie (White Glow)", + "GiftDropId": 12297, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12297, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,2mwfYNx7iUGbSf6u8rRXwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Green)", + "GiftDropId": 12298, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12298, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,DJnKyNXtuEW1tbKBFscIng,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Hoodie (Pink Glow)", + "GiftDropId": 12299, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12299, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,jhPUIkf5bkinMSsqPTK3fg,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Glow Skeleton Hoodie", + "GiftDropId": 12300, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12300, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,NvnHqZ-nb068DOSrxZPYIQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Blue)", + "GiftDropId": 12301, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12301, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,s6DQxJ3gY0CG8L7JmcmRTQ,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Hoodie", + "GiftDropId": 12302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,WRi0rK1O60qEpDPgOH5P6g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Purple)", + "GiftDropId": 12303, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12303, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,x_UvGO3yQEmprFEXhPExDg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Pink)", + "GiftDropId": 12304, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12304, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,xtjgHdnYREm_gx_tLsTpvg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Orange)", + "GiftDropId": 12305, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12305, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,ZY0rVNemjEuEMGMjuPNZyA,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Hoodie (Blue Glow)", + "GiftDropId": 12306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12306, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df29d81e-851b-40b8-95ae-8461f702b1e0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beehive Beanie", + "GiftDropId": 12307, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12307, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dfcc5a47-5f73-496c-84b4-d44702231f7e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Wrist Guard (Jade)", + "GiftDropId": 12308, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12308, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dfcc5a47-5f73-496c-84b4-d44702231f7e,h-uMOz2Hz06ymEjtz4wuzQ,4Ooi0h3SrkObClvS2cGk9Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Wrist Guard (Red, Gold)", + "GiftDropId": 12309, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12309, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e005f9ab-47bc-4c5b-8c45-b0cc6c55ab1c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jolly Hat (Orange)", + "GiftDropId": 12310, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12310, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e005f9ab-47bc-4c5b-8c45-b0cc6c55ab1c,veF50UiWeUS8ugHSm6g_3g,7KDavHUPDUKTJI0fFzJHpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jolly Hat (Red)", + "GiftDropId": 12311, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12311, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e042433a-40a2-4758-8074-3b9d407835ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Romper (Pink)", + "GiftDropId": 12312, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12312, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e0c4c93d-ea3e-420f-9e8f-7890b5bd4b6f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunflower Earrings", + "GiftDropId": 12313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Blue)", + "GiftDropId": 12314, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12314, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,5TJPDmvEBEOkP82ZWLFqtg,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Red)", + "GiftDropId": 12315, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12315, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,8zXWUxwZHU6tThCV4p5iGg,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (White, 2019 Fantasy Contest)", + "GiftDropId": 12316, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12316, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,rCeRk8Pdl0W5M47JAQPhpw,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Green)", + "GiftDropId": 12317, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12317, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,s2kCppLsN0uY7Hy6qjQc-g,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Black)", + "GiftDropId": 12318, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12318, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Women's Athleisure Top", + "GiftDropId": 12319, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12319, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,FbedbSonT0izB7Q6cLXCzw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orange Floral Athleisure Crop Top", + "GiftDropId": 12322, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12322, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,QF05cIuqhEeY8oNnO9CocA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Athleisure Crop Top", + "GiftDropId": 12323, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12323, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,SoQerU2dOUu9BdRBAsEllA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Athleisure Crop Top (Purple)", + "GiftDropId": 12324, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12324, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Green)", + "GiftDropId": 12325, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12325, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,09Cg6dOq2kC2-tI5yyGSYg,eUktNKKK3kqUR8-gA3rNxA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Snowman)", + "GiftDropId": 12326, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12326, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,2lD-mjl3pk2wWv24RY2tbA,dUu7b-JFOky9c2lIVCNmcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Red)", + "GiftDropId": 12327, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12327, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,cj9OYinX5kyzlhBUQwZKog,AKWH3_SDqkG8SRm5sauROQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Ugly Ham)", + "GiftDropId": 12328, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12328, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,NJcJw51-xkq0phT-nlJw2A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Reindeer)", + "GiftDropId": 12329, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12329, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,OrqqGMhK1UKGowFxpJi2mw,6WVXb20giEWyZbW2gWGz_w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Frost)", + "GiftDropId": 12330, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12330, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,TDcZZ2ynEU-Mgmju_qIVIg,6WVXb20giEWyZbW2gWGz_w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Vermont)", + "GiftDropId": 12331, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12331, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,-tDd0gdxQkuvL2id10AweQ,6WVXb20giEWyZbW2gWGz_w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Pine)", + "GiftDropId": 12332, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12332, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1a13235-e3b3-4b39-8e6f-e6449d4321b7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Eyepatch (Skull)", + "GiftDropId": 12333, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12333, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1a13235-e3b3-4b39-8e6f-e6449d4321b7,clFrpYWFQEmDkE14f3o_Ig,DE1C-RJkuEWIvpR0q1i42g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Eyepatch (Black)", + "GiftDropId": 12334, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12334, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Wings", + "GiftDropId": 12335, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12335, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,IgocvfGIn0u_Jq4GP2_fJg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Bat Costume Wings", + "GiftDropId": 12336, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12336, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,oO_Ij0Vsvki4Fa6qonrf7A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Wings (Black)", + "GiftDropId": 12337, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12337, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,Q2BNGA-idUyHDPu7m-ZSnA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Bat Wings", + "GiftDropId": 12338, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12338, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e21b9dd6-c3d1-42cb-a90d-1b60ffb826fd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Monkey Hat", + "GiftDropId": 12339, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12339, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e2620c2c-c28e-45ce-a83c-0588329b9c81,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Blue)", + "GiftDropId": 12340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e27d33ca-8a81-4c16-a3c1-ffdbc9104d7f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pincushion Hat", + "GiftDropId": 12341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e286863c-2967-4d00-b837-b49487b9484a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fauxhawk Hair", + "GiftDropId": 12342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e29d044e-79fb-4280-bca9-aa1e1257e968,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Speed)", + "GiftDropId": 12343, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12343, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e2ObiQFqCUOdKniKL9a1EA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cupid Headpiece", + "GiftDropId": 12344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e36bcd98-7e85-43fa-89f8-57e4ec33823a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bob with Bangs Hair", + "GiftDropId": 12345, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12345, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4888429-6f5b-4f57-9b9b-2559d3a54856,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rainbow Headphones", + "GiftDropId": 12347, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "This item may come in handy at concerts, afterparties, or in dark, forbidden lairs...", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12347, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e48955ae-50e0-4f55-93a1-611150142331,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbarian Tunic", + "GiftDropId": 12348, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12348, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e49d5d78-157e-4bc8-b878-ff7c4963fdc4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mohawk Hair", + "GiftDropId": 12349, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12349, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Red)", + "GiftDropId": 12350, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12350, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,0724b166-9ace-46ff-a191-b13f135b00a8,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Blue)", + "GiftDropId": 12351, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12351, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,4169bfed-8403-4590-a29d-4941275ac0b6,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Pink)", + "GiftDropId": 12352, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12352, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,9bb0x4qgokyQLbt1jA25Wg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Outfit (Blue)", + "GiftDropId": 12353, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12353, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,AdJ3ExsUq0ixzaKDHK5RUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Punk Jacket", + "GiftDropId": 12354, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12354, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,G2ncsS9U8E6fyjvliFqdOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Punk Jacket", + "GiftDropId": 12355, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12355, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,MFsWxydybE-dw3KO2hkuZA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Punk Jacket", + "GiftDropId": 12356, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12356, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,TC79rbThdkCZHGWaxk-qYA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Olive Punk Jacket", + "GiftDropId": 12357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,YceWQmfB7U-R7OeBIr2Ogw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Outfit (Orange)", + "GiftDropId": 12358, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12358, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e5b83dfc-b2e1-4dcb-a4ab-9d3a4c8a34ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Wavy Hair", + "GiftDropId": 12359, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12359, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Black)", + "GiftDropId": 12360, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12360, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,2axtF2iOGkez1kfRRGUbYw,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Green)", + "GiftDropId": 12361, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12361, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,Chiz8maLoEGDpZOJZEtdQg,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Blue)", + "GiftDropId": 12362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Grey)", + "GiftDropId": 12363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,22dc463a-a89b-46ad-9a0d-557c742b4a80,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (White)", + "GiftDropId": 12364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,59866578-d4e0-417b-9483-233ab108b1ac,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Cherry)", + "GiftDropId": 12365, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12365, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Black)", + "GiftDropId": 12366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ed134bee-d199-43eb-98bd-206571603f40,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Blue)", + "GiftDropId": 12367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ITH2OpzjP022vZ5JgxV_iQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Yellow)", + "GiftDropId": 12368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,PMa9370LPEig_7pKwCceEQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Green)", + "GiftDropId": 12369, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12369, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e6216087-fb37-46f1-bda4-a88c4640f339,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Hair", + "GiftDropId": 12370, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12370, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e6216087-fb37-46f1-bda4-a88c4640f339,KwhdQ1deNE6Y6jzO9vaAnQ,byvLynH8x06OQ7GNCXOVYA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Hair (Lilac)", + "GiftDropId": 12371, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12371, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e633d56d-5121-4492-b606-40759108a00e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Pop Earrings (Orange)", + "GiftDropId": 12372, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12372, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e633d56d-5121-4492-b606-40759108a00e,6CFwXqWT50mH1v6WueFsjw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rocket Pop Earrings", + "GiftDropId": 12373, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12373, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oversized Cardigan", + "GiftDropId": 12374, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12374, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,bIQKJloWV0SEnBEtoxP_Wg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Candy Corn Cardigan", + "GiftDropId": 12375, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12375, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,kKpiR8YM8UG7xcaIgS9aXA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oversized Cardigan (Forbidden)", + "GiftDropId": 12376, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12376, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,oQspLDUDxEaiudqzXY7gbg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oversized Cardigan (Painted Egg)", + "GiftDropId": 12377, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12377, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,W1LdNEXmX0m72Wr7EjJ_gQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oversized Cardigan (Winter)", + "GiftDropId": 12378, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12378, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e6d49fa3-db6c-4e5a-938c-8cd9b6f977e5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Gloves", + "GiftDropId": 12379, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12379, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e6d49fa3-db6c-4e5a-938c-8cd9b6f977e5,YzJL2s9S0Umv5XH_g5PG_g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Gloves (Mardi Gras)", + "GiftDropId": 12380, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12380, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Cape", + "GiftDropId": 12381, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12381, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,2N0meQR4GEGu9Yy61C0Lwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Cape (Western)", + "GiftDropId": 12382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,Q3ctsvvDDEy_S1TDiGdf6w,DobTmYhC7EigHmvYnCTm3w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Cape (Green)", + "GiftDropId": 12383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e9913b06-58cb-4b90-bd08-981a3f19f352,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Construction Shirt (Blue)", + "GiftDropId": 12384, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12384, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest", + "GiftDropId": 12386, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12386, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,fD5vtKxBWECH54Jj4FbnUg,C8gCmBZ8RUG83vvDw_UYew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest (Time Travel Contest)", + "GiftDropId": 12387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,gy-xeYKKREaBlx9fUmuW2w,C8gCmBZ8RUG83vvDw_UYew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest (Silver)", + "GiftDropId": 12388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ea254491-116c-41c4-a9ca-1fa1fca76374,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE - Red)", + "GiftDropId": 12389, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12389, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ea254491-116c-41c4-a9ca-1fa1fca76374,1n-ekJos-EeViiz_zG4jEg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE - Blue)", + "GiftDropId": 12390, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12390, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eacebd1a-070e-4733-a6b6-65811ef7891a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stranded Astronaut Helmet", + "GiftDropId": 12392, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12392, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Gloves (Tan)", + "GiftDropId": 12393, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12393, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,32a5e42d-2b60-40b1-a145-ed96fc91af8e,f4cea991-fc3d-4715-bf82-8a8fb60e8799,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Gloves (Blue)", + "GiftDropId": 12394, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12394, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,72a010c0-bddd-4e5d-bca6-9821d82de9a6,f4cea991-fc3d-4715-bf82-8a8fb60e8799,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Gloves (Gray)", + "GiftDropId": 12395, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12395, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eb830b12-c1b5-4796-b9cf-ccf0f0e1d4f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Mask (Orleans)", + "GiftDropId": 12396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eb830b12-c1b5-4796-b9cf-ccf0f0e1d4f1,mkkk2N_2-EKX3pVfk7U5aA,UQe6v62i6ESImdpc7gB_8w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Mask (Parade)", + "GiftDropId": 12397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eb9611c6-bb50-41a2-93e9-7f959815a846,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dreads Long Hair", + "GiftDropId": 12398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ebdf9a1b-46d2-4960-8da5-0cfa0c0adef2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Jersey (Buckateers)", + "GiftDropId": 12399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ebdf9a1b-46d2-4960-8da5-0cfa0c0adef2,c3Su0qnh-UK-ymcGaUy4Uw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Jersey (Goblins)", + "GiftDropId": 12400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec474314-fd79-441d-852b-d8999274fe57,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wavy Middle Part Hair ", + "GiftDropId": 12401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Suit (White)", + "GiftDropId": 12402, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12402, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,9GhnX4Pj4E-wxbPlD8GB-g,YSrGwXybGEqaqHNCS64qOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Suit (Orange)", + "GiftDropId": 12403, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12403, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec5f5089-7154-425b-8be2-743954ea2d69,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Crystal)", + "GiftDropId": 12404, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12404, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (White)", + "GiftDropId": 12405, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12405, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,8c74ee27-3d56-401b-8a8c-7868a80770e8,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Black)", + "GiftDropId": 12406, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12406, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,cea53c7f-24a9-4e3b-80b9-fbf95738f973,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Orange)", + "GiftDropId": 12407, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12407, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Blue)", + "GiftDropId": 12408, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12408, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (White)", + "GiftDropId": 12409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Grey)", + "GiftDropId": 12411, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12411, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Black)", + "GiftDropId": 12412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,2qYs9IkE90eppx1DggNlsA,6Y43EyTpiEejGp0ODWTSjA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Moons & Stars)", + "GiftDropId": 12413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,484b6c13-af22-4ad5-8c43-34c0de095d49,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Light Blue)", + "GiftDropId": 12414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Orange)", + "GiftDropId": 12415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,5rLtRfNWO0qT7X-0sJkUXg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Lime)", + "GiftDropId": 12416, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12416, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Gold)", + "GiftDropId": 12417, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12417, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,7d8e55fe-3c34-4b4b-9753-0021f6cc6454,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Cream)", + "GiftDropId": 12418, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12418, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Red)", + "GiftDropId": 12419, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12419, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Ai85jH88H06ze74VdWolfw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Pure Red)", + "GiftDropId": 12420, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12420, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Pink)", + "GiftDropId": 12421, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12421, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Blue)", + "GiftDropId": 12422, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12422, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Dg3DxHr8GU2e190TGveXqw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Baby Pink)", + "GiftDropId": 12423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,DiJGFIO-5Ue8rkEhvF5-Mg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Sienna)", + "GiftDropId": 12424, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12424, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,f8b0cfe8-e129-4578-8bb5-f60af5d38599,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Green)", + "GiftDropId": 12425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,fWxn_AarpESryNA9UN8wvA,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Teal)", + "GiftDropId": 12426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,gOP1m4pVHkmlR2k8RrcdmQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Wristbands (Ethan Bortnick)*", + "GiftDropId": 12427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,j367nSYyg06rOMZ1GmfmFA,FS7kgc4DpkKuar24J9dW8g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Plaid)", + "GiftDropId": 12428, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12428, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,JV60jZGerUWuzQ2rRnwquQ,gSb8iLTEZ0mi3g5-jZXifQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Polka Dot)", + "GiftDropId": 12429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,M0nOQl44DkG_GjTXzAEQCQ,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Yellow)", + "GiftDropId": 12430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,NRjJuinZ4ki8qaEPvP84tw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Mint)", + "GiftDropId": 12431, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12431, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,sEKIlMfbJ0eED6VtcXcQrw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Army Green)", + "GiftDropId": 12432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Sg5yKkqJEEulQeUvRhFgJg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Prussian Blue)", + "GiftDropId": 12433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,x3kGXCD0UEWkjfXqu_kuxg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Purple)", + "GiftDropId": 12434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Z2L6AqDdcUqxiN1mVw-X9g,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Light Purple)", + "GiftDropId": 12435, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12435, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Cuffs (Black)", + "GiftDropId": 12436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,556141f7-6fbc-4065-9faa-8d8240a93d7f,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Cuffs (Red)", + "GiftDropId": 12437, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12437, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,d81d0b62-e052-46c2-9252-4bc5fb219f53,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Cuffs (Gold)", + "GiftDropId": 12438, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12438, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,xGmnUGF-Ck-jP43r8tVVjg,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Cuffs (Green)", + "GiftDropId": 12439, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12439, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ed4439c6-edad-4239-934f-79f9cc816c0e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banjo", + "GiftDropId": 12440, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12440, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ed4439c6-edad-4239-934f-79f9cc816c0e,7ykIpgU8Tkmmq_zzpjTVrg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banjo (Black)", + "GiftDropId": 12441, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12441, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ed4439c6-edad-4239-934f-79f9cc816c0e,iqYc9qtbZEig8jl_ZqKe6w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banjo (Red)", + "GiftDropId": 12442, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12442, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ed695ac2-ff70-4ebe-b1db-18d71a4efdd1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowgirl Vest", + "GiftDropId": 12443, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12443, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eda29bce-5a07-4439-a2a7-cafa11e2ed62,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Belt", + "GiftDropId": 12444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "edc7888c-dc42-48ab-8815-884d227760af,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Short Locs Hair", + "GiftDropId": 12445, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12445, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robo Logo Cap (Blue)", + "GiftDropId": 12446, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12446, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,W-xMu8n2CUuHSXfHvEL4yw,-apO3Y7om0GKhC4V_hVYdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robo Logo Cap (Pink)", + "GiftDropId": 12447, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12447, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bear Hug Hat (White)", + "GiftDropId": 12448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,9nPWmpM4mUmEpHfthqYeng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Honeybear Hug Hat", + "GiftDropId": 12449, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12449, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,OnZujqqU_UqwxmznvBBMfg,_zrnGn1ErEWR8WqrZmKZsA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bear Hug Hat (Holiday Panda)", + "GiftDropId": 12450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,XKoxnTXYGkSUu52nVS9dnA,TFOAk7kwh0uUgtsyDNxMuQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bear Hug Hat (Brown)", + "GiftDropId": 12451, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12451, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Blue)", + "GiftDropId": 12452, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12452, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,_psc7WCgOk2JzRQwuFAqNw,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (White)", + "GiftDropId": 12453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,7_n11PF4-0KqTZ9az23hqg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Black)", + "GiftDropId": 12454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,8xqL--ghKUunlS0r4ugCgg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mushroom Cap", + "GiftDropId": 12455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,JShcoWWPz0297HeEUJbDCQ,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Red)", + "GiftDropId": 12456, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,TKbjEeTWfUyA1u4laoULMg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Green)", + "GiftDropId": 12457, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,WeP_tPjUNUuGojXrVBOAIA,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Purple)", + "GiftDropId": 12458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Red)", + "GiftDropId": 12459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,3bqY_T4_HEy406HcXrfLuA,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Blue)", + "GiftDropId": 12460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,aaaG7Fg8fky2dkrwVsA30g,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Yellow)", + "GiftDropId": 12461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,d0D2htQZvEKajd0oAesNow", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (White)", + "GiftDropId": 12462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,I4lNZy7lR0uyUN5Vk3fabA,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Pink)", + "GiftDropId": 12463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,SMeMLRUF-UWrOcXYJzgScw,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Black)", + "GiftDropId": 12464, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12464, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,W7E9KfRTLEK-1EZTNKM3Yw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Space)", + "GiftDropId": 12465, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12465, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,WkI_v-Sua0WlhmMf8R4aGA,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Green)", + "GiftDropId": 12466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efac28ae-ff44-4322-9bc0-61eaaef95399,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Dragon)", + "GiftDropId": 12467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Sweater Scarf", + "GiftDropId": 12468, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12468, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,0JVWqxXYoUqgI-5ORIr0bA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Sweater Scarf", + "GiftDropId": 12469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,LVuUiGBtn0mp4Wfs-2F5EQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweater Scarf (Pink)", + "GiftDropId": 12470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,R8VYB2EGPkmQX4dbmGLuRA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweater Scarf (Yellow)", + "GiftDropId": 12471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,wCCq14_wc06hkmjg6TTFxw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweater Scarf (Green)", + "GiftDropId": 12472, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12472, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Flamingo)", + "GiftDropId": 12473, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12473, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,9WpjdWJbhkCoEgDljqZkdw,Uyn3QOl1zkGR2_OUOhNWjQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Rubber Ducky)", + "GiftDropId": 12474, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12474, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,hM0OmxjWLESbsJ-M0Z3QvQ,qZzkrGXpPkGq_nnGLZorwA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Parrot)", + "GiftDropId": 12475, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12475, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,k3dbqP5z30KU37MVPpsEPQ,GtoHkTpyA0iGIHsxphwivg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Dino)", + "GiftDropId": 12476, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12476, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Blue)", + "GiftDropId": 12477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,1FcyrVGyGEC9dmOq_51nFQ,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Green)", + "GiftDropId": 12478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,LDjFJtM-WkeYhtwA7cyDOg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Pink)", + "GiftDropId": 12479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,N9CBuYaMtUOrCks5UcOycg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Red)", + "GiftDropId": 12480, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12480, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,xpkEQ6yjhU-WfFPSjvPdHg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Orange)", + "GiftDropId": 12481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,zaSTWOUy_k6cnoVVYzypWg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Teal)", + "GiftDropId": 12482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Black)", + "GiftDropId": 12483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,0svDrGn2NkmhUjC1VJUgRg,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Green)", + "GiftDropId": 12484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,Aq4fjEW5gEyzetXMoG2tdQ,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (White)", + "GiftDropId": 12485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,SmRcrycMZ0qYNsHuQQOORA,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Blue)", + "GiftDropId": 12486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,z-yaXP9ImkysLOGuCQiblw,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Red)", + "GiftDropId": 12487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f09be0ec-19eb-4443-843c-b387b6731e48,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "He-Man Hair", + "GiftDropId": 12488, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12488, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f159e878-7563-46db-b59d-c838612a0a78,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teela Tiara", + "GiftDropId": 12490, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12490, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Fall)", + "GiftDropId": 12491, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12491, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,M16XTvLPKUWRpiAspgsatQ,tmaPvkx3BUOZ3nsl2E0oRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Summer)", + "GiftDropId": 12492, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12492, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,OxO9ivoKB0e-fNIEk33Erw,tmaPvkx3BUOZ3nsl2E0oRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Spring)", + "GiftDropId": 12493, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12493, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,rXhNZtcZCU21dwEHOCgWOA,tmaPvkx3BUOZ3nsl2E0oRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Winter)", + "GiftDropId": 12494, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12494, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f17a2f9e-1eab-44e8-b10a-1f53c5d0778c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Hair", + "GiftDropId": 12495, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12495, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Helmet (White)", + "GiftDropId": 12496, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12496, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,JFalLDUvm0aMm3wh1UVfVg,iQjkS1xYP0S63ltvKpkz5g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Helmet (Orange)", + "GiftDropId": 12497, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12497, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f23e86eb-8b59-4b32-a72a-5d382568e399,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Vest", + "GiftDropId": 12498, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12498, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f23e86eb-8b59-4b32-a72a-5d382568e399,wuCrGxBRQUa5BLwx1nASPw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Vest (Solstice Contest)", + "GiftDropId": 12499, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12499, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Hat (Tan)", + "GiftDropId": 12500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,d0bb468c-b78f-4e80-916d-65fec3ec0010,0272eb19-fc0e-4ad6-8db9-cc0cda2528b0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Hat (Green)", + "GiftDropId": 12501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutu (Pink)", + "GiftDropId": 12502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,6fp7nDdMvU6Ig-EmvjMpIA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Tutu (Mint)", + "GiftDropId": 12503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,lBkOSQNDZUOvoknntnEMew", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Tutu (Blue)", + "GiftDropId": 12504, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12504, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,sq5Qv4nVAUqzhMdB7U2MVQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Butterfly Tutu", + "GiftDropId": 12505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,UjSxxUK7z0GGdjvI_NsJ3Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Tutu (Monarch)", + "GiftDropId": 12506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f2c1c5e3-b201-4d34-9ce6-3082ff7e5d42,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Belt", + "GiftDropId": 12507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f2c1c5e3-b201-4d34-9ce6-3082ff7e5d42,szDKGCS30UCwXJJcVocFDQ,3v_zUVDTUku_iEf-olDk1w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Belt (Green)", + "GiftDropId": 12508, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12508, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f2db0ec1-e536-4218-8385-dc6913941880,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cosmic Hero Gauntlet", + "GiftDropId": 12509, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12509, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Yellow)", + "GiftDropId": 12510, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12510, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,27680277-aec1-41be-a476-9f51cf775580,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Purple)", + "GiftDropId": 12511, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12511, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,5a96ac4d-03c3-4214-9dcb-c2044ff28f2e,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Grey)", + "GiftDropId": 12512, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12512, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,cf515c87-3c0a-4443-9f63-5ea1bdbaa61a,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (White)", + "GiftDropId": 12513, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12513, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f47f81e7-fcdd-4687-9b99-013147bef30f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Belt Sash", + "GiftDropId": 12514, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12514, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f4f372b8-33a1-462e-a9f7-8a0e85b2c0d7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mystic Mantle", + "GiftDropId": 12515, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12515, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Red)", + "GiftDropId": 12516, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12516, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,5b58d879-2bc4-47ed-a996-1af2ace16425,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Green)", + "GiftDropId": 12517, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12517, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d320ad9b-ba5c-45ea-b2b8-0d3e409a9db1,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Black)", + "GiftDropId": 12518, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12518, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d61711fd-589a-4669-b991-9408a58fffd9,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Cream)", + "GiftDropId": 12519, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12519, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,MIfCkcrFOEasJqfDmxThdw,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Purple)", + "GiftDropId": 12520, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12520, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,oJFfs62tR0WVRry2Smt8yA,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Light Blue)", + "GiftDropId": 12521, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12521, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51abeae-7c5d-4065-aa2a-b2e7025b3fcd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Tunic (Hidden Worlds Contest)", + "GiftDropId": 12522, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12522, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Purple)", + "GiftDropId": 12523, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12523, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Red)", + "GiftDropId": 12524, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12524, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,c5884778-a87f-4612-9717-86fbb65d440f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Blue)", + "GiftDropId": 12525, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12525, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5b01307-e495-469c-afac-c10f375cffb0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yoga Mat", + "GiftDropId": 12526, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12526, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5b01307-e495-469c-afac-c10f375cffb0,lIURXMnmn0GcYFUVSXHzWA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yoga Mat (Boogie)", + "GiftDropId": 12527, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12527, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Blue, Gold)", + "GiftDropId": 12528, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12528, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,2738ab5f-8c94-46b3-bac6-4a8111c41c21,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (Pink, Black, Pink)", + "GiftDropId": 12529, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12529, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,36e63797-5a42-4779-a5cc-ef5c2e7d17d4,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Black, Silver)", + "GiftDropId": 12530, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12530, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,70112887-dc8d-49d5-96ed-0845204e0b58,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (Black, Black, Gold)", + "GiftDropId": 12531, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12531, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,f5403c89-9769-479b-8a05-c71607f9b189,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Black, Gold)", + "GiftDropId": 12532, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12532, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,hhs9GY3XZkWb-8TXODvo6A,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (High Seas Contest)", + "GiftDropId": 12533, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12533, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f60e093f-33be-4527-b827-060adc77b1f4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Cap (Tan)", + "GiftDropId": 12534, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12534, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f60e093f-33be-4527-b827-060adc77b1f4,0d2830e7-8eb0-4fa3-99bc-7c80f01dd991,464fcf20-361f-4dc9-b074-150c3bc27523,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Cap (Blue)", + "GiftDropId": 12535, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12535, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f61eb9cc-c0d3-4b45-a7b7-b6c69e5e6db4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Panda Hat", + "GiftDropId": 12536, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12536, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f641d4f4-e197-4cf4-b477-89069797967d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Edgy Earrings (Gauge)", + "GiftDropId": 12537, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12537, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Frosty)", + "GiftDropId": 12538, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12538, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,6JihVI8pm0eJ-wDWuXm0sg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Hawk)", + "GiftDropId": 12539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,g14i4cTzkUu6RCOELBZEZA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raven Winged Headband", + "GiftDropId": 12540, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12540, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,JUOrYcAd7U-ChkFZRiBeKA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Fire)", + "GiftDropId": 12541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,wwT8NdC-bk-aAWLoJvef5A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Ice)", + "GiftDropId": 12542, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12542, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,yxBqgXjlVEeRUOC_6iv77g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Pink)", + "GiftDropId": 12543, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12543, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f684d86f-4a75-4a9a-bc0a-cf58f36c91c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Yellow)", + "GiftDropId": 12544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Blue)", + "GiftDropId": 12545, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12545, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,GQSpXmD0B02_gwzpq6StFA,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Red)", + "GiftDropId": 12546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,YvPeCbQS2UOcLjPfoIML_g,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Yellow)", + "GiftDropId": 12547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,zGOD45zNAk2i6P_zPsNPfg,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Green)", + "GiftDropId": 12548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6eee46c-084b-473e-954b-a0c8aa99a02d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Amulet of Elseware* (Cursed)", + "GiftDropId": 12549, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "A mysterious and powerful object from an unknown place. No one knows what it does yet but it seems to respond when worn... (Catalyst)", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12549, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6eee46c-084b-473e-954b-a0c8aa99a02d,qbEYPChG5EmnFDUfzwAakg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Amulet of Elseware (Cleansed)*", + "GiftDropId": 12550, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12550, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Shirt (Tan)", + "GiftDropId": 12551, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12551, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,4c845dbb-26c3-48a1-b562-e28a7416b154,6ce21c65-f4e9-41ac-be94-8eb1a08d5c76,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Shirt (Blue)", + "GiftDropId": 12552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,96e2b29e-e553-40f1-9eb6-8a9f7e64da39,6ce21c65-f4e9-41ac-be94-8eb1a08d5c76,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Shirt (Grey)", + "GiftDropId": 12553, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12553, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f7764314-c02c-4b46-9c56-8c60351d9b14,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gentlelady Gloves", + "GiftDropId": 12554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Red)", + "GiftDropId": 12555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,3bqY_T4_HEy406HcXrfLuA,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Blue)", + "GiftDropId": 12556, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12556, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,aaaG7Fg8fky2dkrwVsA30g,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Yellow)", + "GiftDropId": 12557, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12557, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,GSO7t0cNs0SIbU-jQjnX5g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (White)", + "GiftDropId": 12558, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12558, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,I4lNZy7lR0uyUN5Vk3fabA,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Pink)", + "GiftDropId": 12559, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12559, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,SMeMLRUF-UWrOcXYJzgScw,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Black)", + "GiftDropId": 12560, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12560, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,WkI_v-Sua0WlhmMf8R4aGA,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Green)", + "GiftDropId": 12561, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12561, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f8514fc6-93f3-4063-bafc-378ddf454836,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Edgy Earrings (Dangle)", + "GiftDropId": 12562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f90773c6-d0f0-417a-9af5-183d1e5a657f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glowstick Necklace", + "GiftDropId": 12563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f9dd08f8-16d3-4c39-af4f-89f7bb6e80d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Undercut Short Hair", + "GiftDropId": 12564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Bracer ", + "GiftDropId": 12565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,nNJ8Tkg57k6pTS_0HSLkUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Bracers (Black)", + "GiftDropId": 12566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,oCeStQfVkE2ZwCcQjtV1bg,r94RX2106E2TRK2wQ-u8-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Bracer (Green)", + "GiftDropId": 12567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,VmHQJIt7HkO4INJEXCBbNA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Bracer (Pink)", + "GiftDropId": 12568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Green)", + "GiftDropId": 12569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,8kAqQHAgnUypHdxnwVSQwQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Yellow)", + "GiftDropId": 12571, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12571, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,l1cBXE49rkKTDEl1NvmWog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Purple)", + "GiftDropId": 12573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,pUHlnnttXUmqP-9Rab8YaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Orange)", + "GiftDropId": 12576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,S5IPVluRPkWzapjf7Bdtxg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Blue)", + "GiftDropId": 12577, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12577, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fb2a0e86-3363-4579-9f18-f41138dc85ba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wolf Amulet", + "GiftDropId": 12578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Uniform (Tan)", + "GiftDropId": 12579, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12579, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,b415fe60-3e9d-4f4d-a53a-ca15eac6af7d,d21e1b6f-9c9e-42b4-bad5-201ec43161e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Uniform (Green)", + "GiftDropId": 12580, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12580, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fbdca48d-4ae6-41ad-8c33-b70a9e33fd77,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Action Hair", + "GiftDropId": 12581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fbf74c15-4b42-4cd4-94dd-d0e86f11541b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Heart Antennae", + "GiftDropId": 12582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat", + "GiftDropId": 12583, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12583, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,4v1-TIIgnU-sg5ROppnEPQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat (Black)", + "GiftDropId": 12584, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12584, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,AvIuVibXj0u7UzWFh90_LA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Chicken Hat", + "GiftDropId": 12585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,fF9qwnew3Eao2gF0xcOqrw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat (Yellow)", + "GiftDropId": 12586, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12586, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,wl3nqp4FsU2wqEkYFqv3_Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat (Brown)", + "GiftDropId": 12587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Cool Mint)", + "GiftDropId": 12588, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12588, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,opDwtb3OdESsA2Zpfx7luQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moth Wings (Pepper)", + "GiftDropId": 12589, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12589, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fcfcaf63-deb4-45f7-b711-c051c9ea45cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Bun Hair", + "GiftDropId": 12590, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12590, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mermaid Dress", + "GiftDropId": 12591, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12591, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat - Pride (Rainbow Pride)", + "GiftDropId": 12592, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12592, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,6547pqf6vUm2L89AG6D91A,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Raven)", + "GiftDropId": 12593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,knXPidb-Rkayfc3kSHfZeQ,1yMyo6oTjU-VAygoeWaohQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat - Pride (Trans Pride)", + "GiftDropId": 12594, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12594, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,nn86ATWxekWdIGlPePPgGQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Vintage)", + "GiftDropId": 12595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,oxi26T5a4U6L73pF-Pgrhg,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Grackle)", + "GiftDropId": 12596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,Rf7CDh2bg0-HdG5n7phGaw,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Thornbill)", + "GiftDropId": 12597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,tXhgU1o_wkaNQ-7P3KXidQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Kingfisher)", + "GiftDropId": 12598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe2721b5-16c8-4d9d-bca5-0233ab008fbb,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NBA Wristband", + "GiftDropId": 12600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Coat (White)", + "GiftDropId": 12601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,KTidYfH0ckWxJGs5qzUBTQ,w07bkcUoQEiNJTVDeSywzQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Coat (Blue)", + "GiftDropId": 12602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,X0nzvhAtgEKqzjQPb9d3qQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science PPE Coat (Restoration)", + "GiftDropId": 12603, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12603, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "feb8b50b-d3da-4e45-b4d0-69aeeb5cfeb3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headdress (White)", + "GiftDropId": 12605, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12605, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "feb8b50b-d3da-4e45-b4d0-69aeeb5cfeb3,1WBsT99QM0anps6ZoWE59Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headdress (Red)", + "GiftDropId": 12606, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12606, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Blue)", + "GiftDropId": 12608, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12608, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Red)", + "GiftDropId": 12609, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12609, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,rzUd1IMTKUmW0HeMPSIOBQ,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Green)", + "GiftDropId": 12610, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12610, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Coat (White)", + "GiftDropId": 12611, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12611, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,PR5dh2jf2kqGLO0lXgA69A,VDn1hO6ahky0GDJt5dRmyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Coat (Black)", + "GiftDropId": 12612, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12612, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Green)", + "GiftDropId": 12613, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12613, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,8c74ee27-3d56-401b-8a8c-7868a80770e8,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Black)", + "GiftDropId": 12614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,cea53c7f-24a9-4e3b-80b9-fbf95738f973,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Orange)", + "GiftDropId": 12615, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12615, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Blue)", + "GiftDropId": 12616, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12616, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor", + "GiftDropId": 12617, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12617, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,JY4zXsTbX0W1sU6g1o4kuw,Y-XQzHOjIkC_-it1j9m9jA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor (Green)", + "GiftDropId": 12618, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12618, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,trFPTiehdUm2Q3bdvBQr7Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor (Pink)", + "GiftDropId": 12619, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12619, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,W_AVltwf7kSzmftSsGdijw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor (Black)", + "GiftDropId": 12620, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12620, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffea7a65-613f-4835-921e-6dd15f357b7e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Bangs Hair", + "GiftDropId": 12621, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12621, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "FHKZvPFMLkO8iAIPPQzu1A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Hearts)", + "GiftDropId": 12622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "FHKZvPFMLkO8iAIPPQzu1A,K17dIz_TRUq5D50NBfLjyw,3drRcfyKkku0qGwCy16m9Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Shamrock)", + "GiftDropId": 12623, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12623, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "FHKZvPFMLkO8iAIPPQzu1A,PEGqjoxP6E2yRx_A-HphrQ,I_OF1c0YWESMwxJr9sXYOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Candy Cane)", + "GiftDropId": 12624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "GAWURQSqrEW4G5slrPMgZA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dude Sweater", + "GiftDropId": 12625, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12625, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper", + "GiftDropId": 12626, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12626, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,AAbGHOOitUu9enweOXbrkw,fXnd_COSzUeznwe7P4ZYRg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper (Time Travel Contest)", + "GiftDropId": 12627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,Jy2TN1KBTEeoVehy_x32Ng,fXnd_COSzUeznwe7P4ZYRg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper (Silver)", + "GiftDropId": 12628, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12628, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "h_To9WQYdEusYQxlbMmMmQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dracula Cape", + "GiftDropId": 12629, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12629, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Fuchsia)", + "GiftDropId": 12630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,EDLxuGjEVEGdOPXDqyN-xA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Red)", + "GiftDropId": 12631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,f0pjsV0XMUWoE_z2kqOlSA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Orange)", + "GiftDropId": 12632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12632, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,kLv_wsbbGUmlfIUO1QLYLw,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Green)", + "GiftDropId": 12633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12633, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,lhfOKGDAgEKWucerCmH7Fg,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Teal)", + "GiftDropId": 12634, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12634, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hTHM3Kjqy0ykqBD8UCRQJw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thrilling Jacket (Red)", + "GiftDropId": 12635, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12635, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hTHM3Kjqy0ykqBD8UCRQJw,7-lAnMa7M0u0n0nmeIINgw,6GfSjqIb4ECCvIPC8vO8_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thrilling Jacket (Blue)", + "GiftDropId": 12636, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12636, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hTHM3Kjqy0ykqBD8UCRQJw,8HR0DwDl2ECtHf5aEkqSHQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thriller Suit (Orange)", + "GiftDropId": 12637, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12637, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Red)", + "GiftDropId": 12638, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12638, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,MxnAq_XOw0uTzQ8IIxqb_Q,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Yellow)", + "GiftDropId": 12639, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12639, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,oKxmH-1s2EyIDkZoOQSQQw,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Green)", + "GiftDropId": 12640, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12640, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,XFCpIdeDXUqeYCIgh4fGtg,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Blue)", + "GiftDropId": 12641, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12641, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Satchel", + "GiftDropId": 12642, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12642, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,bH3dgwnwt0KEw8oCDVIcEQ,erPtGSgq_kmqfeSlZWw4VA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Satchel (Silver)", + "GiftDropId": 12643, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12643, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ilDgmey2ZUWlFiuEAN7YoQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Gloves", + "GiftDropId": 12644, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12644, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ilDgmey2ZUWlFiuEAN7YoQ,K9wPZ9LHo02GPMtf02rANQ,U7jMLMX4_kKIy1K9IcHOXA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Gloves (Lilac)", + "GiftDropId": 12645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Belt (Brown)", + "GiftDropId": 12646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,lAjUeUtTLU2-3bG2OXBukg,LFB_YqTym0-tQmUIj-YcYA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Belt (Black)", + "GiftDropId": 12647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "J6IQt4G1zUeN8v9Wn50BUw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Headband (YouTuber, SoulFox)", + "GiftDropId": 12648, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12648, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Necklace (Turquoise)", + "GiftDropId": 12649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,0S7Nqm2kv0qMDTh-5Wy0MQ,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Necklace (Ruby)", + "GiftDropId": 12650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,F7luQ18ZXEaITFiCqqwkpg,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Necklace (Topaz)", + "GiftDropId": 12651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,lvDIOeSI10SNxnCO_M_9zA,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Necklace (Diamond)", + "GiftDropId": 12652, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12652, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,OfenZaa1-UGdQ8YVOrXjzw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Necklace (Emerald)", + "GiftDropId": 12653, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12653, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,okpg4ftsak-wc8Zu83uytw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Necklace (Opal)", + "GiftDropId": 12654, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12654, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,poqpmOloPUKotHH9p0YAyw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Necklace (Amethyst)", + "GiftDropId": 12655, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12655, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,WOxMXWKGrUWhnNInttZ-Zw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Necklace (Amber)", + "GiftDropId": 12656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Orange)", + "GiftDropId": 12657, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12657, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,8iZO162KNUiMC8l_z3OC_A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Purple)", + "GiftDropId": 12658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,D-SngK7hhkOpoZ2aMWv9EA,mkDVc0Mz4kmuLZ7powBHpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Hearts)", + "GiftDropId": 12659, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12659, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,f_c50saStkaGJuhLjJ9lfA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Black)", + "GiftDropId": 12660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,FUP4iRnoc0ikNmjrFD06lg,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Pink)", + "GiftDropId": 12661, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12661, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,GmS0wKwzVEqdf3NoTMHG5A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Teal, Polka Dot)", + "GiftDropId": 12662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,-Iqmonry4EKoqAULCKzRPA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (White, Polka Dot)", + "GiftDropId": 12663, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12663, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,ZNKGkou_gU-1cxBFy7pDKw,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Red, Polka Dot)", + "GiftDropId": 12664, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12664, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jUpFzO5MPEGTbS-E0a99Nw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dracula Jacket", + "GiftDropId": 12665, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12665, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat", + "GiftDropId": 12666, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12666, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,vuSwk04zykCe3ANKN838OA,Uhw5NBQy-EOIiCWiZFiL7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat (Time Travel Contest)", + "GiftDropId": 12667, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12667, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,ZUMIXcyOpEGiHgslbHQbwA,Uhw5NBQy-EOIiCWiZFiL7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat (Silver)", + "GiftDropId": 12668, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12668, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Jacket (Blue)", + "GiftDropId": 12669, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12669, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,9QG6qp5FBU-u0-JK-yMMqA,x10FeRBsQU2DIIpG8XIlwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Jacket (Red)", + "GiftDropId": 12670, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12670, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,CavRDqIlmUeTZBtCLn1hZQ,x10FeRBsQU2DIIpG8XIlwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Jacket (Midnight)", + "GiftDropId": 12671, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12671, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,Z8Bfk0MTb0evZehvvgzuBA,x10FeRBsQU2DIIpG8XIlwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Jacket (Leather)", + "GiftDropId": 12672, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12672, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "kghEf_iMKUSxPO-h5iRhSQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Classic Glasses", + "GiftDropId": 12673, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12673, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "KNZ1DvCLC0WHyH4opYAXtw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Creators Contest 2)", + "GiftDropId": 12674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "KPmC_wyX_ECe7fdKwoLMGg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Cap", + "GiftDropId": 12676, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12676, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "KPmC_wyX_ECe7fdKwoLMGg,FaWMLkJJgEKFIO493fzGxg,yzL0M_N5Q0eAa8IxACHPAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Cap (Maker Pen Class)", + "GiftDropId": 12677, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12677, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "KPmC_wyX_ECe7fdKwoLMGg,nCPVMrWXGkeeIN-969xzuQ,yzL0M_N5Q0eAa8IxACHPAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Cap (Video Creation Class)", + "GiftDropId": 12678, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12678, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset", + "GiftDropId": 12679, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12679, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,A6VnGtpY9Ey0atf3zaLo3g,GJRG8sCM7kSGfUd9gLwpgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset (Time Travel Contest)", + "GiftDropId": 12680, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12680, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,rsUfUnTwbU6zrjrHWps1yA,GJRG8sCM7kSGfUd9gLwpgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset (Silver)", + "GiftDropId": 12681, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12681, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Lli8-aqt1EmCmyXwBRQaYA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mummy Head Wrap", + "GiftDropId": 12682, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12682, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "m5Plrduzr0yj_9mTn1x3Vw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "1988 Jacket (Promo Room Drop)", + "GiftDropId": 12683, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12683, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Cap (Bachelor)", + "GiftDropId": 12684, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12684, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,gDH1WmW5rk2RdY4wJYYZow,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Cap (Master)", + "GiftDropId": 12685, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12685, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,GK3yolCNlEm3B_5DtHkE8w,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Cap (Level 3)", + "GiftDropId": 12686, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12686, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,L333w3dfIEWDbtt1Yn1gBg,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Cap (Level 2)", + "GiftDropId": 12687, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12687, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,U2ZbHn8WJEySUXVpzAY6ig,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Cap (Level 1)", + "GiftDropId": 12688, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12688, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,wHJnbDOo8ESmUbQDr0k31w,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Cap (Doctor)", + "GiftDropId": 12689, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12689, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "mfFLpKQRE0anhrmeUvW0bA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Laurel Crown (Promo Room Drop)", + "GiftDropId": 12690, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12690, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "mfFLpKQRE0anhrmeUvW0bA,p5TStfnDXk-EY7k6UdHxnA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Crown", + "GiftDropId": 12691, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12691, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Blue)", + "GiftDropId": 12692, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12692, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,dYPaOkwy3EGAfvl8RyN4pw,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Pink)", + "GiftDropId": 12693, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12693, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,FE7_gQNBt0CXzMN6di5HWA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Red)", + "GiftDropId": 12694, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12694, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,hYu9itGe1Ee5Neanhj9VtQ,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Orange)", + "GiftDropId": 12695, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12695, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,kTP3xKhzBkuQF3SqvmYFKA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Green)", + "GiftDropId": 12696, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12696, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,VQjkyb5aoEKHKo_eZsq9ug,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Teal)", + "GiftDropId": 12697, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12697, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJQiQ3LATEOymxCC8wfSjw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Gown (Master)", + "GiftDropId": 12698, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12698, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJQiQ3LATEOymxCC8wfSjw,L333w3dfIEWDbtt1Yn1gBg,lSDrKR69rkSFULy9GA__1w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Gown (Level 2)", + "GiftDropId": 12699, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12699, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Jacket", + "GiftDropId": 12700, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12700, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "O8VqC11xNkSKpDh6Omp_0w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Sash (Doctor)", + "GiftDropId": 12701, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12701, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "O8VqC11xNkSKpDh6Omp_0w,mvj5RDTuh0qoql0OyBFI9g,YQQamy-tQkCkpZPXKepUrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Sash (Level 3)", + "GiftDropId": 12702, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12702, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oRUh266ohkWQil14uxcEdQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mummy Shroud", + "GiftDropId": 12703, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12703, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "OTnfT-4NQU6Gd_iVPDx8eg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frankenstein Head", + "GiftDropId": 12704, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12704, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt Bag", + "GiftDropId": 12705, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12705, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,eaRDMCA4fE6KJHi639QFvQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Belt Bag (Purple)", + "GiftDropId": 12706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,ncERd5bELk23jSRxA7NV9g,N-cAmfOgv0eJZMTo18zJHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt Bag (Premium)", + "GiftDropId": 12707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,whs9olNz9Uani7Gou31mvw,y6aASPUwDkas0W5Yl27ydQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt Bag (Rainbow Pride)", + "GiftDropId": 12708, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12708, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,zIIQkllHFEyjEvAGYC0cPQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Belt Bag (Orange)", + "GiftDropId": 12709, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12709, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pNOfTDOgJUGQvGAlTjBoCg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wide Neck Tie (Promo Room Drop)", + "GiftDropId": 12710, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12710, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poindexter Shirt (White)", + "GiftDropId": 12711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,lq59KZwElEStrviDEQLLcA,olyS074RHU-ojE0GzBBYJw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poindexter Shirt (Black)", + "GiftDropId": 12712, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12712, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,PSpysyn5gEKXCEi7f6gDoQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Suspender Shirt (Pink)", + "GiftDropId": 12713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "PryEX4MEvkGKwST6dqJHjA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cupid Toga", + "GiftDropId": 12714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Red)", + "GiftDropId": 12715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,90qQe0AR3kOou0MsuoTmPA,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Blue)", + "GiftDropId": 12716, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12716, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,hZKPr4sg10SRj9DLuEgOrw,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Black)", + "GiftDropId": 12717, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12717, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,x3Q0vVeG_E6juqGM1o0SOQ,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (White)", + "GiftDropId": 12718, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12718, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Jacket (Red)", + "GiftDropId": 12719, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12719, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,i5RKLo-RbEqisnGII1wpaQ,xnxDimLvVUCI9tEJqWDDcA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Jacket (Black)", + "GiftDropId": 12720, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12720, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,IzkFARlv6EenmrfcNkcOuw,xnxDimLvVUCI9tEJqWDDcA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Jacket (Midnight)", + "GiftDropId": 12721, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12721, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,LyVf9lnzdku1F4iPBGqk-g,xnxDimLvVUCI9tEJqWDDcA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Jacket (Green)", + "GiftDropId": 12722, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12722, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Tan)", + "GiftDropId": 12723, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12723, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,H0sqS2_VPEieVrHSyMNo7g,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Black)", + "GiftDropId": 12724, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12724, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,TjeZwaUp10uhM72q8j4R0A,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Red)", + "GiftDropId": 12725, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12725, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Cuff", + "GiftDropId": 12727, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12727, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,64Hvmzrb3Uu9X_dCA3M3Jw,rPpYm5fIzky4vqVB26guAw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Cuff (Silver)", + "GiftDropId": 12728, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12728, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Hat (Pickup)", + "GiftDropId": 12729, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12729, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,lDXambcP60CeY2C8qeGDFw,uiAwVt3HK0mRVtWp9B-gTg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Hat (Flatbed)", + "GiftDropId": 12730, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12730, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "rJ9zPPGdlk2i24sxLfkqng,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lifeguard Uniform", + "GiftDropId": 12731, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12731, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "s6mUIqiPCk6e57UYCx3SZA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hat (Grim)", + "GiftDropId": 12732, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12732, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "s6mUIqiPCk6e57UYCx3SZA,0cP9EcZRFEuMOvmZ_Kx9dA,smmfK-N2R0uoDiuIHrhImg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hat (Emerald)", + "GiftDropId": 12733, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12733, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "s6mUIqiPCk6e57UYCx3SZA,PcUZrdKXhk2XHa5Gy0YnnA,dpBx3DxB7kKJphxCvfmKKw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hat (Creators Contest)", + "GiftDropId": 12734, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12734, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sL7iHCnjyEuQKzrTvciEzQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bride of Frank Hat", + "GiftDropId": 12735, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12735, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Pauldron", + "GiftDropId": 12736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,rSzG7s1ocUmx9_VrJLOcHQ,ISycihytUUyoypVb-kXN_Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Pauldron (Silver)", + "GiftDropId": 12737, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12737, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Hat (Brown)", + "GiftDropId": 12738, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12738, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,CoSVCyrI-0qg-EkqB2R0hg,JO9lJOQSREWbPyDBZH_cyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Hat (Black)", + "GiftDropId": 12739, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12739, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Bandolier (Brown)", + "GiftDropId": 12740, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12740, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,YTlnBuEjhUG1hSfAs8qwuw,IcR9Z_MxKkS9uh4uFYuFzQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Bandolier (Black)", + "GiftDropId": 12741, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12741, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Cuff (Red)", + "GiftDropId": 12742, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12742, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,i5RKLo-RbEqisnGII1wpaQ,8kdJkmwNM0WQmMVrb8fK8A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Cuff (Black)", + "GiftDropId": 12743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,jwEB6LyEaEekqtPNRc6TVA,8kdJkmwNM0WQmMVrb8fK8A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Cuff (Midnight)", + "GiftDropId": 12744, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12744, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,Wj7I2YiVoE6zp8J_HYs8tw,8kdJkmwNM0WQmMVrb8fK8A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Cuff (Green)", + "GiftDropId": 12745, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12745, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TcgHS_0aPkehrBg7ytMOMQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clubmaster Glasses", + "GiftDropId": 12746, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12746, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Tan)", + "GiftDropId": 12747, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12747, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,3qu7mxSNpkKRrYMhsWHVGg,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Black)", + "GiftDropId": 12748, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12748, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,Ij8MXrl1Okip4M7y-gF23Q,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Red)", + "GiftDropId": 12749, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12749, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,qEojxjSXm06CX52hRDJAew,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (White)", + "GiftDropId": 12750, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12750, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tkbHKZ9wu0W00VGeUbIaaw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frankenstein Wrists", + "GiftDropId": 12751, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12751, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Tan)", + "GiftDropId": 12752, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12752, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,eV3Nv6SWS0yl3f-fgjPb-w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Denim)", + "GiftDropId": 12753, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12753, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,Lxx3q6JRnUW_cPG_kGG4ag,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (White)", + "GiftDropId": 12754, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12754, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,vek37vRROUKnSJKVP0CH6w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Charcoal)", + "GiftDropId": 12755, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12755, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-twtjyBdQ02EAdOfBGTiEw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Van Dyke Beard", + "GiftDropId": 12756, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12756, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "U_H976qYRUmg9e2clsAflg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Gown", + "GiftDropId": 12757, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12757, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "U_H976qYRUmg9e2clsAflg,4D4ge1PYokaj_g96k4oasA,ica0LZyM_kOox8gxW7CaMw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Gown (Video Creation Class)", + "GiftDropId": 12758, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12758, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "U_H976qYRUmg9e2clsAflg,iZy7RmfAz0603oMO-jD-WA,ica0LZyM_kOox8gxW7CaMw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Gown (Maker Pen Class)", + "GiftDropId": 12759, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12759, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Black)", + "GiftDropId": 12760, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12760, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,2sf-FU4WckGBDWUkVz4z1g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Sky)", + "GiftDropId": 12761, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12761, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,3PfP661Fg0CruzRxis9EiA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Dreams)", + "GiftDropId": 12762, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12762, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,4scG_UBlzE-5DWRhSrtm6g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Chillout)", + "GiftDropId": 12763, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12763, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,8ANbOhNnO0yLQOCIBsDwfg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Blue)", + "GiftDropId": 12764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,a5nUvJZgTEGBUvdHx0Y6Ng,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Purple)", + "GiftDropId": 12765, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12765, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,d9mwowRelE2lDKEA0UQMZQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Dawn)", + "GiftDropId": 12766, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12766, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,hf0gkFVS8ESvceRsC3LAXQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Psy)", + "GiftDropId": 12767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,I1J-xY4YNU2dB_od4P_7Dg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Heat)", + "GiftDropId": 12768, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12768, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,JWBK5v78Y0uRVEXlD-Qk6Q,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Orange)", + "GiftDropId": 12769, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12769, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,k_ZYy0SjtU2TB7IFdq2vDA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Synth)", + "GiftDropId": 12770, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12770, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,ns5tIRishUOp-nYqLedcwA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Techno)", + "GiftDropId": 12771, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12771, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,nX7krD8e2km_ZlOLWcoxdQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Lounge)", + "GiftDropId": 12772, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12772, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,oNtLjorrZ06t4yIdWqKCcQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headphones (Wooden)", + "GiftDropId": 12773, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12773, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,OqsbZ8Xls0i8uA6ha7H3qQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Trance)", + "GiftDropId": 12774, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12774, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,pAlEt5sqD0mKgFd_0b7RgA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Headphones (Blossom)", + "GiftDropId": 12775, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12775, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,PNH0VNS1qk6nWVecYmVDDQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Headphones (Orange)", + "GiftDropId": 12776, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12776, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,PQTvQiYu-ESRUldnxgm5BQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Jungle)", + "GiftDropId": 12777, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12777, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,sXF1BZr8X06AYnWUrWxy1Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Headphones (Lavender)", + "GiftDropId": 12778, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12778, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,thG3Dc1PFEqAvT9xCVshuw,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Green)", + "GiftDropId": 12779, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12779, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Void)", + "GiftDropId": 12780, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12780, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,viL4CPch2ECwG-RNaWcyZw,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Red)", + "GiftDropId": 12781, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12781, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UGkQa4atNUe1cE5TN79s4Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Unicorn)", + "GiftDropId": 12782, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12782, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "uubY_Cn9A0-Ww4lsIRCF6w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dracula Medal", + "GiftDropId": 12783, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12783, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shirt", + "GiftDropId": 12784, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12784, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,4ijeE3LqUUuSplKrMto6Kg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Begonia)", + "GiftDropId": 12785, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12785, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,adJVA26PyUSVvmZgxkCAmQ,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Poppy)", + "GiftDropId": 12787, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12787, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,d27e5m1BLUWI42Pxnj6F4A,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Dahlia)", + "GiftDropId": 12788, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12788, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,gwdtq3NiEEmMKYtn1VPoiw,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shirt (Yellow)", + "GiftDropId": 12789, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12789, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,iEvS6I9LjkSaGAmjcxz8uQ,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Shirt (Red)", + "GiftDropId": 12790, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12790, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,NKf5-r2S_0iP0SaO9bjvaw,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Paradise)", + "GiftDropId": 12791, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12791, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,otQaNOsODUSTfHlCX0IVOA,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Lily)", + "GiftDropId": 12792, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12792, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,RZFWcTzxPkOfUuTIQ1mzkg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Primrose)", + "GiftDropId": 12793, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12793, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,XT_txjZfIUOT400UPHLaRA,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Shirt (Green)", + "GiftDropId": 12794, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12794, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vP9EKTMXP0yni8U7uCz2-g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Sash (Master)", + "GiftDropId": 12795, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12795, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vP9EKTMXP0yni8U7uCz2-g,FsATqzRVekO9hQ3u_q7keg,Q7hqvEo7DUyD9AqIOunWWA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Sash (Level 2)", + "GiftDropId": 12796, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12796, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vpP2ZvnL0Uy3n-I_Jv3eeQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Hairy - Promo Room Drop)", + "GiftDropId": 12797, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12797, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "VQnoLstCyEGDPy1c38-GvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Helmet", + "GiftDropId": 12798, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12798, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "W7AJ4UYlVkWF5nLbmpmRBg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Crown", + "GiftDropId": 12799, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12799, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "W7AJ4UYlVkWF5nLbmpmRBg,5Hk7UR60rkquUNxpQ8O0Gw,zMXDVNsKn0GhVd2Tjho0-g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Crown (Lilac)", + "GiftDropId": 12800, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12800, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Red)", + "GiftDropId": 12801, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12801, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,MxnAq_XOw0uTzQ8IIxqb_Q,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Yellow)", + "GiftDropId": 12802, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12802, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,oKxmH-1s2EyIDkZoOQSQQw,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Green)", + "GiftDropId": 12803, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12803, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,XFCpIdeDXUqeYCIgh4fGtg,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Blue)", + "GiftDropId": 12804, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12804, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Fuchsia)", + "GiftDropId": 12805, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12805, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,_uh3kj6hKUyBKOSR3R8dog,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Purple)", + "GiftDropId": 12806, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12806, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,i3rD_hnQG0a-5f6Ve4AfWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Pink)", + "GiftDropId": 12807, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12807, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,kaRBW1u3dkODGjPMePW6Uw,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Rose)", + "GiftDropId": 12808, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12808, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,Ot9EG-FfKEauT0u6pSZuWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Teal)", + "GiftDropId": 12809, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12809, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,S9uymuvraUCOM8gmB7bnEA,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Dark Blue)", + "GiftDropId": 12810, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12810, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "wy2cfgb8mUqjMrIOwHH2ew,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Cuffs (Grim)", + "GiftDropId": 12811, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12811, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "wy2cfgb8mUqjMrIOwHH2ew,0ZKR_qxrWkiWkjpot8s6Cg,5aX524Lfok-0dC3UFv-OkQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Cuff (Emerald)", + "GiftDropId": 12812, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12812, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "wy2cfgb8mUqjMrIOwHH2ew,Hk6svQ5Sr0GDKLxOyktk9w,IQvHmZ8ei02hVuXZiXb6TA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Cuffs (Creators Contest)", + "GiftDropId": 12813, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12813, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "zpjkkb1HtUORoPaODFuuxg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mummy Hand Wrap", + "GiftDropId": 12814, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12814, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ZsggwOJ8XUOGfaJltM418g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frankenstein Shirt", + "GiftDropId": 12815, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12815, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + } + ], + "StorefrontType": 3, + "SubscriberDiscountPercent": 0 +} diff --git a/packages/tools/src/cmd/storefront.cmd.ts b/packages/tools/src/cmd/storefront.cmd.ts index a70e4de..d6b12a4 100644 --- a/packages/tools/src/cmd/storefront.cmd.ts +++ b/packages/tools/src/cmd/storefront.cmd.ts @@ -8,7 +8,10 @@ import { buildCatalogLoad, CATALOG_INSERT_COLUMNS, CatalogKind, + existedByLegacyBuild, isSellableRarity, + LEGACY_CLIENT_BUILD, + LEGACY_CLIENT_BUILD_DATE, priceForRarity, subscriberPriceFor, } from '../../../../apps/econ/src/catalog-load' @@ -16,57 +19,69 @@ import { getRepoRoot } from '../path' import { readCaptures } from './catalog.cmd' /** - * Generate `apps/econ/static/storefronts/sf3-2025.json` — the general store as the 2025 client - * sees it: everything sf3 already sells, PLUS every sellable row of the item catalog. + * Generate the two general-store catalogues the econ worker serves, both from the item catalog. * * runx storefront build * - * One merged file rather than a second storefront id. The client asks for storefront 3 either - * way; the econ worker picks WHICH file by the caller's build (`rn.ver`), so an older build - * keeps exactly the sf3 it has always had and a newer one gets the same store with the - * catalog's items added to it. + * They are the same store at two points in time, and the econ worker picks which file a caller + * gets from their token's `rn.ver`: * - * A static catalog like every other `sf{N}.json`, because that is the only shape + * sf3.json items that existed by LEGACY_CLIENT_BUILD — what the 2023 client is served + * sf3-2025.json every sellable item — what a later build is served + * + * ONE storefront id either way. The client asks for 3 in both cases and neither knows there are + * two files, so nothing about the request changes and no item is renumbered. + * + * Both are static catalogues like every other `sf{N}.json`, because that is the only shape * `loadStorefront` reads and because browse and BUY have to agree: `findStoreItem` resolves a * purchase against the very same file, so an item that is not in it cannot be bought. * - * The two id spaces do not collide, which is what makes the merge safe: every captured sf3 id - * is 2764 or below (one outlier aside) and every catalog id starts at `CATALOG_ID_BASE` - * (10000). Nothing is renumbered, and an id means the same item in both files. + * `sf3.json` used to be a CAPTURE of the real 2023 store and is now generated. What survives of + * that capture is `static/db/consumables.json`: the 35 store items the item catalog does not + * model as sellable entries. Everything else was dropped for a reason — + * + * avatar items the catalog has them, and generating keeps ONE source of truth for an + * item's id and price + * equipment skins not sold at all: they are awarded from weekly challenges, so a store + * listing one would sell something the game gives away */ const OUT_DIR = 'apps/econ/static/storefronts' -/** The captured general store, whose items the generated one is built on top of. */ -const BASE_STOREFRONT = `${OUT_DIR}/sf3.json` - -/** The merged store the newer client is served, and the `StorefrontType` it reports. */ -const OUT_FILE = `${OUT_DIR}/sf3-2025.json` -const STOREFRONT_TYPE = 3 +/** + * The store items the item catalog does not model, kept from the 2023 capture and copied into + * both files verbatim — ids, prices and gift-drops untouched. + * + * 30 consumables and the 5 random boxes. Nothing here carries an `AvatarItemDesc` (the catalog + * generates those) or an `EquipmentModificationGuid` (skins are awarded, not sold) — which is + * exactly what qualified the rest for removal. + */ +const CARRIED_ITEMS = 'apps/econ/static/db/consumables.json' /** RecCenterTokens — the currency the avatar storefronts sell in. */ const CURRENCY_TYPE_TOKENS = 2 +/** The storefront id BOTH files report. They are two versions of one store, not two stores. */ +const STOREFRONT_TYPE = 3 + /** - * Far enough out that the client never refetches — the same sentinel sf3 carries. A real - * storefront rotates; this one is regenerated by hand, so it must not expire on its own. + * Far enough out that the client never refetches — the same sentinel the capture carried. A real + * storefront rotates; these are regenerated by hand, so they must not expire on their own. */ const NEXT_UPDATE = '2226-06-14T00:12:20.1324853Z' +/** One `Prices` / `SubscriberPrices` entry, in the shape the capture used. */ +const priceEntry = (p: number) => [ + { CurrencyType: CURRENCY_TYPE_TOKENS, Price: p, StorefrontSaleData: null, Type: 0 }, +] + const build = new Command('build') - .description('Generate the merged 2025 general store (sf3 + the item catalog)') + .description('Generate sf3.json and sf3-2025.json from the item catalog') .action(async () => { const { avatarItems, skins } = await readCaptures() - // sf3's own items, carried through UNCHANGED. They keep their ids, their prices and their - // gift-drops: the merge adds to the store the older client knows, it does not restate it. - const basePath = path.join(getRepoRoot(), BASE_STOREFRONT) - const base = JSON.parse(await fs.readFile(basePath, 'utf8')) as { - StoreItems: Array<{ PurchasableItemId: number }> - } - - // The catalog ids come from the same loader the DB load uses, so the number in this file is - // the number in the table. An avatar item's `item_key` IS its `AvatarItemDesc`, which is + // The catalog ids come from the same loader the DB load uses, so the number in these files + // is the number in the table. An avatar item's `item_key` IS its `AvatarItemDesc`, which is // what lets the two be matched up without a second numbering scheme to keep in step. const { rows } = buildCatalogLoad(avatarItems, skins) const kindAt = CATALOG_INSERT_COLUMNS.indexOf('kind') @@ -74,6 +89,13 @@ const build = new Command('build') rows.filter((r) => r.values[kindAt] === CatalogKind.AvatarItem).map((r) => [r.key, r.id]) ) + // The items the catalog does not model — consumables and the random boxes. Carried across + // verbatim; the catalog has no prices for these and does not model a box at all. They were + // filtered when the file was cut, so nothing is re-checked here. + const carried = JSON.parse( + await fs.readFile(path.join(getRepoRoot(), CARRIED_ITEMS), 'utf8') + ) as Array<{ PurchasableItemId: number }> + const byRarity = new Map() const excluded = new Map() const forSale = avatarItems.filter((item) => { @@ -81,6 +103,7 @@ const build = new Command('build') excluded.set(item.Rarity, (excluded.get(item.Rarity) ?? 0) + 1) return false }) + const storeItems = forSale.map((item) => { const catalogId = catalogIdByDesc.get(item.AvatarItemDesc) if (catalogId === undefined) { @@ -88,12 +111,10 @@ const build = new Command('build') } const price = priceForRarity(item.Rarity) byRarity.set(item.Rarity, (byRarity.get(item.Rarity) ?? 0) + 1) - const priceEntry = (p: number) => [ - { CurrencyType: CURRENCY_TYPE_TOKENS, Price: p, StorefrontSaleData: null, Type: 0 }, - ] return { - // Key order and every constant field mirror sf3, because the client's parser reads - // this shape and an sf that differs from the one known to work is a needless variable. + // Key order and every constant field mirror the capture, because the client's parser + // reads this shape and a store that differs from the one known to work is a needless + // variable. GiftDrop: { AvatarItemDesc: item.AvatarItemDesc, AvatarItemType: item.AvatarItemType, @@ -104,7 +125,7 @@ const build = new Command('build') EquipmentModificationGuid: '', EquipmentPrefabName: '', FriendlyName: item.FriendlyName, - // sf3 has GiftDropId === PurchasableItemId on all 1161 of its items; keep that. + // The capture has GiftDropId === PurchasableItemId on all 1161 of its items. GiftDropId: catalogId, IsQuery: false, ItemSetFriendlyName: '', @@ -119,37 +140,51 @@ const build = new Command('build') IsFeatured: false, Prices: priceEntry(price), // The catalog id, directly — one number, no second numbering to keep in step. It is - // already clear of every captured storefront's ids (see `CATALOG_ID_BASE`), which is - // what lets it be used here as-is. + // already clear of every captured id (see `CATALOG_ID_BASE`), which is what lets the + // carried items and these share a file. PurchasableItemId: catalogId, SubscriberPrices: priceEntry(subscriberPriceFor(price)), Type: 0, + // Not emitted — only used to split the two files below. + _createdAt: item.CreatedAt, } }) - // An id colliding across the two would make one number mean two different items depending - // on which half answered first — refused rather than resolved by ordering, since the whole - // point of `CATALOG_ID_BASE` is that this cannot happen. - const baseIds = new Set(base.StoreItems.map((i) => i.PurchasableItemId)) - const collisions = storeItems.filter((i) => baseIds.has(i.PurchasableItemId)) - if (collisions.length > 0) { - throw new Error( - `${collisions.length} catalog id(s) collide with sf3's own, starting at ` + - `${collisions[0]?.PurchasableItemId}. The catalog must be renumbered above them.` + const write = (file: string, items: typeof storeItems) => { + const merged = [...carried, ...items.map(({ _createdAt, ...rest }) => rest)] + // An id meaning two different items depending on which half answered first is the one + // thing this merge must not do. Refused rather than resolved by ordering, since the whole + // point of `CATALOG_ID_BASE` is that it cannot happen. + const ids = merged.map((i) => i.PurchasableItemId) + if (new Set(ids).size !== ids.length) { + throw new Error( + `${file}: duplicate PurchasableItemId across the carried and generated halves` + ) + } + const out = `${OUT_DIR}/${file}` + writeFileSync( + out, + `${JSON.stringify( + { + NextUpdate: NEXT_UPDATE, + StoreItems: merged, + StorefrontType: STOREFRONT_TYPE, + // Deliberately 0 — the discount is expressed ONLY in `SubscriberPrices`. + // Announcing it again here risks a client taking the 10% off an already + // discounted price and posting through the server's own subscriber floor, + // refused as "Price has changed". + SubscriberDiscountPercent: 0, + }, + null, + '\t' + )}\n` ) + return { out, count: merged.length } } - const storefront = { - NextUpdate: NEXT_UPDATE, - StoreItems: [...base.StoreItems, ...storeItems], - StorefrontType: STOREFRONT_TYPE, - // Deliberately 0 — the discount is expressed ONLY in `SubscriberPrices`. Announcing it - // again here risks a client taking the 10% off an already-discounted price and posting - // through the server's own subscriber floor, refused as "Price has changed". - SubscriberDiscountPercent: 0, - } - - writeFileSync(OUT_FILE, `${JSON.stringify(storefront, null, '\t')}\n`) + const legacy = storeItems.filter((i) => existedByLegacyBuild(i._createdAt)) + const sf3 = write('sf3.json', legacy) + const sf32025 = write('sf3-2025.json', storeItems) const table = new Table({ head: ['rarity', 'items', 'price', 'subscriber'] }) for (const rarity of [...byRarity.keys()].sort((a, b) => a - b)) { @@ -165,13 +200,29 @@ const build = new Command('build') for (const [rarity, n] of [...excluded].sort((a, b) => a[0] - b[0])) { console.log(chalk.yellow(`excluded ${n} item(s) of rarity ${rarity} — not for sale`)) } + const undated = storeItems.filter((i) => i._createdAt === undefined).length + if (undated > 0) { + console.log( + chalk.yellow( + `${undated} item(s) carry no CreatedAt and are left out of sf3 — nothing shows they predate the cutoff` + ) + ) + } console.log( chalk.green( - `✓ wrote ${OUT_FILE}: ${storefront.StoreItems.length} items ` + - `(${base.StoreItems.length} from sf3 + ${storeItems.length} from the catalog, ` + - `${((await fs.stat(OUT_FILE)).size / 1024 / 1024).toFixed(1)} MB)` + `✓ ${sf3.out}: ${sf3.count} items ` + + `(${carried.length} carried + ${legacy.length} created before ${LEGACY_CLIENT_BUILD_DATE})` ) ) + console.log( + chalk.green( + `✓ ${sf32025.out}: ${sf32025.count} items ` + + `(${carried.length} carried + ${storeItems.length} from the catalog)` + ) + ) + console.log( + ` build ${LEGACY_CLIENT_BUILD} and earlier is served sf3.json; later builds sf3-2025.json` + ) }) export const storefrontCmd = new Command('storefront') @@ -183,14 +234,17 @@ export const storefrontCmd = new Command('storefront') .addHelpText( 'after', ` -sf3-2025 is the general store as the 2025 client sees it: everything sf3 already sells plus -every sellable row of the item catalog, priced by rarity. The client asks for storefront 3 -either way — the econ worker picks which file by the caller's build, so an older client keeps -the sf3 it has always had. +Both files are the general store at two points in time, generated from the item catalog and +served under storefront id 3. The econ worker picks which one a caller gets from their build: +sf3.json for ${LEGACY_CLIENT_BUILD} and earlier, sf3-2025.json for later. + +The consumables and random boxes come from apps/econ/static/db/consumables.json — what survives +of the 2023 capture once its avatar items (the catalog has those) and its equipment skins +(awarded from weekly challenges, never sold) were dropped. Regenerate whenever apps/econ/static/db/*.json changes, and after every \`runx catalog load\`: a load renumbers catalog_id, and a stale file would list the wrong items. Examples: - $ runx storefront build # write apps/econ/static/storefronts/sf3-2025.json` + $ runx storefront build` )